php切割多维数组

时间:2011-09-28 16:37:33

标签: php arrays multidimensional-array

任何人都可以帮我一个函数或者指出我在切割多维数组时的方向吗?

这就是我需要的:

$array[x][y][b][q][o][p];
$array[b][c][f][q][l][v];

$newArray = cut_array_depth($array, 2);

// Would return a new array with a maximum dimension of 2 elements
// all others would be left out
$newArray[][];

谢谢,

1 个答案:

答案 0 :(得分:3)

你可以自己写一个解决方案(即使我真的不理解'切割'逻辑)

<?php
function cut_array_depth($array, $depth, $currDepth = 0){
    if($currDepth > $dept){
        return null;  
    }
   $returnArray = array();
   foreach( $array as $key => $value ){        
      if( is_array( $value ) ){              
          $returnArray[$key] = cut_array_depth($value, $depth , $currDepth +1);
      } else {
          $returnArray[$key] = $value;
   }
   return $returnArray;

}
?>