Blogger Information
Blog 250
fans 3
comment 0
visits 321543
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
foreach的方法遍历数组
梁凯达的博客
Original
1539 people have browsed it

foreach()方法,是专门用于遍历数组的一种遍历循环方法。

foreach()方法,通常的写法为:

// foreach(数组变量 as 键变量=>值变量){

      循环体  

}

实例

	//写一个一维数组的遍历方法;
	$arr = array(
	'一'=>'高手',
	'二'=>'低手',
	'三'=>'中手',
	'四'=>'断手'
	);
	var_dump($arr);
	
	foreach($arr as $key=>$value){
		echo $key.'<br />';
		echo $value.'<br />';
	}

	//写一个二维数组的遍历方法
	
	$arr1 = array(
	'第一个'=>array(
			'大哥'=>'上学',
			'大妈'=>'买菜',
			'大姨'=>'睡觉',
			'大姨丈'=>'抽烟'
			),
	'第二个'=>array(
			'大哥'=>'吃饭',
			'大爷'=>'洗碗',
			'大娘'=>'洗衣服',
			'大伯'=>'拖地'
			)
	);
	var_dump($arr1);
	echo '<hr />';	
	//遍历二维数组
	foreach($arr1 as $key=>$value){
		echo  $key.'<br />';
		foreach($value as $kk=>$bb){
			echo $kk.'<br />';
			echo $bb.'<br />';
		}
	}

	//另一种直接遍历二维数组的方法
	foreach($arr1 as $key=>$value){
		echo $value['大哥'].'<br />';
	}

运行实例 »

点击 "运行实例" 按钮查看在线实例

 

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post