📜  数组的 php 键 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:39.251000             🧑  作者: Mango

代码示例5
 'apple',
    'fruit2' => 'orange',
    'fruit3' => 'grape',
    'fruit4' => 'apple',
    'fruit5' => 'apple');

// this cycle echoes all associative array
// key where value equals "apple"
for($i = 0; $i< sizeof($array);$i++){
if (key($array[$i]) == 'apple') {
        echo key($array).'';
    }
    //next($array);
}
?>