您的位置:首页 > 编程语言 > PHP开发

PHP遍历关联数组的几种方法

2011-11-06 00:00 706 查看
在PHP中数组分为两类: 数字索引数组和关联数组。其中数字索引数组和C语言中的数组一样,下标是为0,1,2…而关联数组下标可能是任意类型,与其它语言中的hash,map等结构相似。


下面介绍PHP中遍历关联数组的三种方法:


foreach

<?php
$sports = array(
    'football' => 'good',
    'swimming' => 'very well',
    'running'  => 'not good'
	);
	
foreach ($sports as $key => $value) {
    echo $key.": ".$value."<br />";
}
?>


程序运行结果:

football: good
swimming: very well
running: not good


each

<?php
$sports = array(
    'football' => 'good',
    'swimming' => 'very well',
    'running'  => 'not good'
	);
	
while ($elem = each($sports)) {
    echo $elem['key'].": ".$elem['value']."<br />";
}
?>

程序运行结果:


football: good
swimming: very well
running: not good


list & each

<?php
$sports = array(
    'football' => 'good',
    'swimming' => 'very well',
    'running'  => 'not good'
	);
	
while (list($key, $value) = each($sports)) {
    echo $key.": ".$value."<br />";
}
?>

程序运行结果:


football: good
swimming: very well
running: not good
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: