阅读量:0
在PHP中,您可以使用array_search()函数来获取数组中指定值的键名。下面是一个示例:
$fruits = array("apple", "banana", "orange", "grape"); $key = array_search("orange", $fruits); if($key !== false) { echo "The key for 'orange' is: " . $key; } else { echo "'orange' is not found in the array"; }
在这个例子中,我们首先定义了一个包含水果名称的数组$fruits。然后我们使用array_search()函数来查找数组中值为"orange"的元素,并将其键名存储在变量$key中。最后,我们检查$key是否为false(即是否找到了值),如果找到了,就打印出"orange"的键名。