Remove “columns” from the subarrays of a two dimensional array

后端 未结 4 1743
盖世英雄少女心
盖世英雄少女心 2021-01-12 08:03

I have a simple, two dimensional array like this:

Array
    (
        [0] => Array
            (
                [0] => abc
                [1] => 1         


        
4条回答
  •  花落未央
    2021-01-12 08:53

    foreach($array as $key=> $element)
    {
        for($i=0; $i<$n; $i++)
        {
            $newArray[$key][$i] = $element[$i];
        }
    }
    

    Not sure if there is a more efficient method.

提交回复
热议问题