Maison >php教程 >php手册 >遍历关联数组

遍历关联数组

WBOY
WBOYoriginal
2016-06-06 19:34:431306parcourir

遍历关联数组 无 $arr=array('id'='2','friendship'='Your life is too valuable to throw away','comes'=' I\'m gonna say yes--yes to love','num'=563,'make'='make up our minds to take the world as we find it');while($key=key($arr)){echo $key.'---

遍历关联数组
$arr=array('id'=>'2','friendship'=>'Your life is too valuable to throw away','comes'=>' I\'m gonna say yes--yes to love','num'=>563,'make'=>'make up our minds to take the world as we find it');

while($key=key($arr))
{
	echo $key.'---'.$arr[$key].'<br>';
	next($arr);
}

//  注意:只能遍历关联数组
Déclaration:
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