這篇文章主要介紹了php實現遍歷多維數組的方法,涉及php針對多維數組的遍歷與遞歸操作實現技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了php實現遍歷多維數組的方法。分享給大家供大家參考,具體如下:
- $a=array('fruits'=>array('a'=>'orange','b'=>'grape',c=>'apple'),
- 'numbers'=>array(1,2,3,4,5,6),
- 'holes'=>array('first',5=>'second','third')
- );
- //第一種:
- foreach($a as $list=>$things){
- if(is_array($things)){
- foreach($things as $newlist=>$counter){
- echo "key:".$newlist."<br/>"."value:".$counter."<br/>";
- }
- }
- }
- //第二種:
- function MulitarraytoSingle($array){
- $temp=array();
- if(is_array($array)){
- foreach ($array as $key=>$value )
- {
- if(is_array($value)){
- MulitarraytoSingle($value);
- }
- else{
- $temp[]=$value;
- }
- }
- }
- }
希望本文所述對大家php程序設計有所幫助。
新聞熱點
疑難解答