Is there a quick way of joining two arrays, short of looping through the second array and pushing each value to the first?
$a = array( 'one', 'two', 'three' );
$b = array( 'four', 'five', 'six' );
I want the result to be:
'one', 'two', 'three', 'four', 'five', 'six'
Thanks,
Antun