如何把多维数组中的每个子数组合并成一个新数组 $result,有两个方法:
$result
$merged = call_user_func_array('array_merge', $result);
如果是 PHP 版本在 5.6 以上,可以使用 ... 操作符:
...
$merged = array_merge(...$result);