你可以使用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。因此,在使用返回值之前,我們進行了一個條件檢查來確保找到了指定的值。