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