Sort the elements of the $cars array in reverse alphabetical order.
| <?php $cars=array(“Volvo”,“BMW”,“Toyota”); rsort($cars); ?> |
The rsort() function sorts an indexed array in descending order.
Tip: Use the sort() function to sort an indexed array in ascending order.
| rsort(array, sorttype) |
|
Parameter |
Description |
|
array |
Required. Specifies the array to be sorted. |
|
sorttype |
Optional. Specifies how to compare the array elements/items. Possible values are:
|
|
Return Value: |
TRUE on success; FALSE on failure. |
|
PHP Version: |
4+ |
Sort the elements of the $numbers array in descending numerical order.
| <?php $numbers=array(4,6,2,22,11); rsort($numbers); ?> |
Compare the items numerically and sort the elements of the $cars array in descending order.
| <?php $cars=array(“Volvo”,“BMW”,“Toyota”); rsort($cars,SORT_NUMERIC); ?> |