在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"的鍵名。