MivaScript Builtin Function, Miva Merchant 9+
miva_array_merge( source var, sstart, scount, dest var, dpos )
<mvt:assign name="g.return_value" value="miva_array_merge( source var, sstart, scount, dest var, dpos )" />
Copies "scount" elements from "source" into "dest", starting with "sstart" and inserting the elements at "dpos". Existing elements in "dest" past "dpos" are pushed forward by "scount" elements.
source
The source array from which records will be copied
sstart
The source starting index
scount
The number of source records to copy.
dest
The destination array that will receive the copied records.
dpos
The starting index within the destination array. Existing elements in "dest" past "dpos" are pushed forward by "scount" elements.