I need to merge 3 arrays into 1, while ordering the new array in a way that the first entry of the second array follows the first entry of the first array.
Example:
$array1 = array(dog, cat, mouse);
$array2 = array(table, chair, couch);
$array3 = array(car, bike, bus);
These arrays should result in the following array:
$resultarray = array(dog, table, car, cat, chair, bike, mouse, couch, bus);
Many thanks for your responses!