你可以使用array_search()函数来查找数组中特定值的键名。以下是一个示例:
$fruits = array("apple", "banana", "orange", "grape");
$key = array_search("orange", $fruits);
if($key !== false) {
echo "The key of 'orange' in the array is: " . $key;
} else {
echo "The value 'orange' was not found in the array.";
}
在这个例子中,我们首先定义了一个包含水果名称的数组$fruits。然后使用array_search()函数在数组中查找值为"orange"的元素,并将返回的键名赋给变量$key。最后,我们根据$key的值输出结果。
请注意,如果指定的值在数组中找不到,array_search()函数将返回false。因此,在使用返回值之前,我们进行了一个条件检查来确保找到了指定的值。