1. 程式人生 > >php遍歷關聯陣列

php遍歷關聯陣列

$arr=['red'=>'蘋果','orange'=>'橙子','green'=>'西瓜'];

key():是當前陣列指標的鍵名,current()當前陣列指標的值,next()將陣列指標往後移一個座標

 //for迴圈遍歷

for($i=0;$i<count($arr);$i++){

        echo key($arr).'=>'.current($arr).'<br>';

        next($arr);

    };

//while遍歷

$i=0;

while($i<count($arr)){
    echo key($arr).'=>'.current($arr).'<br>';
    next($arr);
    $i++;
}

//foreach遍歷

foreach ($arr as $key => $value) {
    echo $key.'=>'.$value;
}