三种获取PHP关联数组的写法

<?php
//声明一个关联数组,并赋值
$prices = array('Tires' =>100,'Oil' => 10,'Spark Plugs' => 4);

//三种获取关联数组的写法

foreach ($prices as $key => $value){
    echo $key."-".$value."<br/>";
}

//重置数组到开始位置,如果不写reset($prices),只能看到foreach遍历输出,第二个while函数将不会输出
reset($prices);

while($element = each($prices)){
    echo $element['key']."--".$element['value']."<br/>";
}

//重置数组到开始位置,如果不写reset($prices),只能看到foreach遍历输出,第二个while函数输出,第三个while函数将不会输出。
reset($prices);

while(list($product,$price)= each($prices)){
    echo $product."---".$price."</br/>";
}

?>

输出如下结果:

Tires-100
Oil-10
Spark Plugs-4
Tires--100
Oil--10
Spark Plugs--4
Tires---100
Oil---10
Spark Plugs---4