Sort the elements of the $numbers array in descending numerical order:


SUBMITTED BY: henry1874w

DATE: June 27, 2017, 5:20 p.m.

FORMAT: Text only

SIZE: 57 Bytes

HITS: 675

  1. <?php
  2. $numbers=array(4,6,2,22,11);
  3. rsort($numbers);
  4. ?>

comments powered by Disqus