I have the following arrays in PHP (okay they are a bit bigger but the idea is what counts).
$array1 = array(1 => 'a', 2 => 'b');
$array2 = array(3 => 'c', 4 => 'd');
Essentially I want to combine the two arrays as if it were something like this
$array3 = array(1 => 'a', 2 => 'b', 3 => 'c', 4 => 'd');
Thanks