<?php
$testArray = array("p", "c", "z", "a");
rsort($testArray);
print_r($testArray);
//Array ( [0] => z [1] => p [2] => c [3] => a )
?>
<?php
$testArray = array("p", "c", "z", "a");
rsort($testArray);
print_r($testArray);
//Array ( [0] => z [1] => p [2] => c [3] => a )
?>