Sort an associative array in descending order, according to the value:


SUBMITTED BY: henry1874w

DATE: June 26, 2017, 5:05 p.m.

FORMAT: Text only

SIZE: 76 Bytes

HITS: 242

  1. <?php
  2. $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
  3. arsort($age);
  4. ?>

comments powered by Disqus