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

遍历关联数组

WBOY
WBOYOriginal
2016-06-06 19:34:431306Durchsuche

遍历关联数组 无 $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);
}

//  注意:只能遍历关联数组
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn