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

后端 未结 4 1775
盖世英雄少女心
盖世英雄少女心 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:36

    Anything wrong with just looping through it?

    for ( $i = 0; $i < sizeof($input); $i++ ) {
        for ( $j = 0; $j < $n; $j++ ) {
            $output[$i][$j] = $input[$i][$j];
        }
    }
    return $output;
    

提交回复
热议问题