fork download
  1. <?php
  2.  
  3. function transformer_sort($array)
  4. {
  5. sort($array);
  6. return $array;
  7. }
  8.  
  9. $array = range(1, 10000);
  10. shuffle($array); // this will be our test subject
  11.  
  12. $oneToTen = array_slice(transformer_sort($array), 0, 10);
Success #stdin #stdout 0.02s 20520KB
stdin
Standard input is empty
stdout
1446104