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