私が欲しいのは、(ループ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);