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