Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Combining php arrays

Tags:

arrays

php

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

like image 679
Teifion Avatar asked Nov 28 '22 05:11

Teifion


1 Answers

Use

$array3 = $array1 + $array2;

See Array Operators

By the way: array_merge() does something different with the arrays given in the example:

$a1=array(1 => 'a', 2 => 'b');
$a2=array(3 => 'c', 4 => 'd');
print_r($a1+$a2);
Array
(
    [1] => a
    [2] => b
    [3] => c
    [4] => d
)
print_r(array_merge($a1, $a2));
Array
(
    [0] => a
    [1] => b
    [2] => c
    [3] => d
)

Note the different indexing.

like image 94
Stefan Gehrig Avatar answered Dec 10 '22 22:12

Stefan Gehrig