基于行数的数据透视数组

我有以下内容:


$array = array(1,2,3,4,5,6);

我需要“旋转”它以获得:


Array ( [0] => 1 [1] => 4 [2] => 2 [3] => 5 [4] => 3 [5] => 6 )

我所说的“枢轴”是指,让我们假设该数组存储了一个 2 x 3 矩阵(2 行和 3 列)。我的目标是旋转它,使矩阵现在是一个 3 x 2 矩阵(3 行,2 列)


为此,我当然需要一个额外的参数,比方说“行数”(在这种情况下,这就像 2 行)


我做了以下事情:


function pivotArray($array, $nbrRows)

{

  $countTotal = count($array);

  $countCols = $countTotal / $nbrRows;


  $chunk = array_chunk($array,$countCols);


  $out = array();

  for ($row=0;$row<$nbrRows;$row++) {

    for ($col=0;$col<$countCols;$col++) {

    $out[$col][$row] = $chunk[$row][$col];

    }

  }


  $arraySingle = call_user_func_array('array_merge', $out);


  return $arraySingle;    

}

它按设计工作,但我想知道是否有更好的方法来做到这一点?例如避免 2 for 循环?并避免 array_merge ?


繁华开满天机
浏览 93回答 1
1回答

FFIVE

这段代码没有对数组进行多次处理,而是构建了一个中间数组并基于 展开元素$position % $countCols。我还介绍了ceil()列数,以防元素数量为奇数......function pivotArray($array, $nbrRows){&nbsp; &nbsp; $countTotal = count($array);&nbsp; &nbsp; $countCols = ceil($countTotal / $nbrRows);&nbsp; &nbsp; $arraySingle = [];&nbsp; &nbsp; foreach ( $array as $position => $value )&nbsp; &nbsp;{&nbsp; &nbsp; &nbsp; &nbsp; $arraySingle[$position % $countCols][] = $value;&nbsp; &nbsp; }&nbsp; &nbsp; return array_merge(...$arraySingle);}
打开App,查看更多内容
随时随地看视频慕课网APP