ArrayMerge()
This function creates a new array with data from the two passed arrays. To add all the data from one array into another without creating a new array see the built in function ArrayAppend(arr1, arr2, true).
ArrayMerge( array1=array, array2=array, leaveIndex=boolean );
Returns: Array
Examples
Appends one array onto another array
aNames = array(10412,42,33,2,999,12769,888);
aNames2 = array(33,'b','c','d','e','f','g');
dump(arrayMerge(aNames,aNames2));
//member function
dump(aNames.merge(aNames2));
dump(aNames.merge(aNames2, true));
See also
- Arrays
- array.merge()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)