Does anyone know of a function that will do this:
Code: Select all
$array1 = array("1","2","3","4","5");
$array2 = array("ONE","","","FOUR","");Then some magic function, which I hope someone will tell me about, executed here then outputs a new array that combines the two above:
Code: Select all
$new_array would equal "ONE", "2", "3", "FOUR", "5"Thanks, in advance, for any help