中的值獲取子數組的關鍵字我試圖根據該子數組中的值獲取子數組的關鍵字。所以,基於下面的例子,我該如何返回包含'apple'的數組的鍵?PHP - 根據
Array (
[0] => Array (
[fruit] => apple
[colour] => green
)
[1] => Array (
[fruit] => banana
[colour] => yellow
)
)
所以從邏輯上講,是這樣的:提前
if ('apple' is in $subarray) {
echo $subarray_key;
}
感謝。
你必須使用循環來檢查所有的值。 – Marty 2014-09-26 01:03:36