fork download
  1. <?php
  2.  
  3. $a1 = [
  4. 0 => 2,
  5. 1 => 1,
  6. 2 => 8,
  7. 3 => 10,
  8. 4 => 11,
  9. 12 => 9,
  10. ];
  11. $a2 = [
  12. 0 => 9,
  13. 1 => 8,
  14. 2 => 1,
  15. 3 => 11,
  16. 4 => 10,
  17. 5 => 2,
  18. ];
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 9
    [1] => 8
    [2] => 1
    [3] => 11
    [4] => 10
    [12] => 2
)