fork download
  1. <?php
  2.  
  3. $a = [1, 2, 4];
  4.  
  5. $b = [3];
  6.  
  7. var_dump($a + $b);
Success #stdin #stdout 0.02s 26080KB
stdin
Standard input is empty
stdout
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(4)
}