php递归遍历多维数组的方法

Original 2017-02-04 10:54:14 448
abstract:本文实例讲述了php递归遍历多维数组的方法。分享给大家供大家参考。具体如下:<?php function get_array_elems($arrResult, $where="array"){  while(list($key,$value)=each($arrResult)){     if&nbs

本文实例讲述了php递归遍历多维数组的方法。分享给大家供大家参考。具体如下:

<?php
function get_array_elems($arrResult, $where="array"){
 while(list($key,$value)=each($arrResult)){
    if (is_array($value)){
      get_array_elems($value, $where."[$key]");
    }
    else {
      for ($i=0; $i<count($value);$i++){
      echo $where."[$key]=".$value."<BR>\n";
      }
    }
 }
}
 get_array_elems($arrResult);
?>

更多关于php递归遍历多维数组的方法请关注PHP中文网(m.sbmmt.com)其他文章!   


Release Notes

Popular Entries