fork download
  1. <?php
  2.  
  3. $a = array(130, 1805, 1337);
  4. arsort($a);
  5. $a = array_reverse($a);
  6.  
  7. print_r($a);
  8.  
  9. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 130
    [1] => 1337
    [2] => 1805
)