fork download
  1. <?php
  2. $arr[1] = 3;
  3. $arr[2] = 19;
  4. $arr[3] = 7;
  5. $arr[4] = 14;
  6. $arr[5] = 11;
  7.  
  8. arsort($arr);
  9.  
  10. var_dump($arr);
Success #stdin #stdout 0.02s 23704KB
stdin
Standard input is empty
stdout
array(5) {
  [2]=>
  int(19)
  [4]=>
  int(14)
  [5]=>
  int(11)
  [3]=>
  int(7)
  [1]=>
  int(3)
}