fork(2) download
  1. <?php
  2.  
  3. $resultado = array();
  4. for ($i = 0; $i <= 5; $i++){
  5. array_push($resultado, rand(1,60));
  6. }
  7.  
  8. sort($resultado);
  9. print_r($resultado);
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 10
    [1] => 13
    [2] => 15
    [3] => 26
    [4] => 31
    [5] => 32
)