fork download
  1. <?php
  2. $resultado = array();
  3. for ($i = 0; $i <= 5; $i++) array_push($resultado, rand(1, 60));
  4. print_r($resultado);
  5. sort($resultado);
  6. print_r($resultado);
  7.  
  8. //https://pt.stackoverflow.com/q/85574/101
Success #stdin #stdout 0.03s 24184KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 8
    [1] => 8
    [2] => 42
    [3] => 58
    [4] => 46
    [5] => 25
)
Array
(
    [0] => 8
    [1] => 8
    [2] => 25
    [3] => 42
    [4] => 46
    [5] => 58
)