Sort an associative array in descending order based on the values.
| <?php $age=array(“Peter”=>“35”,“Ben”=>“37”,“Joe”=>“43”); arsort($age); ?> |
The arsort() function sorts an associative array in descending order according to the values.
Tip: Use the asort() function to sort an associative array in ascending order based on the values.
Tip: Use the krsort() function to sort an associative array in descending order according to the keys.
| arsort(array, sorttype) |
|
Parameter |
Description |
|
array |
Required. Specifies the array to be sorted. |
|
sorttype |
Optional. Specifies how to compare the array elements. Possible values are:
|
|
Return Value: |
TRUE on success; FALSE on failure. |
|
PHP Version: |
4+ |