Maison > développement back-end > tutoriel php > PHP遍历关联数组的方法介绍

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

WBOY
Libérer: 2016-06-23 13:59:27
original
1177 Les gens l'ont consulté

在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 />";}?>
Copier après la connexion


程序运行结果:

football: goodswimming: very wellrunning: not good
Copier après la connexion
Copier après la connexion
Copier après la connexion


each

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



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

football: goodswimming: very wellrunning: not good
Copier après la connexion
Copier après la connexion
Copier après la connexion


list & each

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


程序运行结果:

football: goodswimming: very wellrunning: not good
Copier après la connexion
Copier après la connexion
Copier après la connexion



 

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal