• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

PHP遍历关联数组的方法介绍

2015-05-27

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

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

foreach

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


程序运行结果:

football: goodswimming: very wellrunning: not good


each

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



程序运行结果:程序运行结果:

football: goodswimming: very wellrunning: not good


list & each

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


程序运行结果:

football: goodswimming: very wellrunning: not good



(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>