fork download
  1. <?php
  2.  
  3. $a = [];
  4. $a[] = 1;
  5. $a[] = 1;
  6. $a[] = 1;
  7. $a[] = 2;
  8. $a[] = 2;
  9. $a[] = 2;
  10. $a[] = 3;
  11.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 1
    [3] => 2
    [6] => 3
)
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
)