fork download
  1. <?php
  2.  
  3. $arr = ['a' => 1, 'b' => 'to', 'c' => 'ahh', 'd' => 2];
  4. $arr += ['c' => 4, 'b' => 'aaa', 'd' => 5, 'e' => 'bob'];
  5.  
  6. print_r($arr);
Success #stdin #stdout 0.02s 24216KB
stdin
Standard input is empty
stdout
Array
(
    [a] => 1
    [b] => to
    [c] => ahh
    [d] => 2
    [e] => bob
)