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