<?php $arr = [ [1, 2, 3, 4], ['one', 'two', 'three', 'four'] ]; $out = array_map(function (...$r) { return $r; }, ...$arr); print_r($out);
You have javascript disabled. You will not be able to edit any code.