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