我想要的是一种(不循环)以is the ,is (或者)...等 efficient
方式合并数组的方法first element of the resulting array
first element of the first array
the second element of the resulting array
the second element of the second array
例子:
$arr1 = array(1, 3, 5);
$arr2 = array(2, 4, 6);
$resultingArray = array(1, 2, 3, 4, 5, 6);