<?php $matrix = [ [1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12], ]; var_export( array_map( null, ...array_chunk( array_merge(...$matrix), count($matrix) ) ) );
You have javascript disabled. You will not be able to edit any code.