PHP arsort() Function is used to sort an associative array in descending order. An arsort() function is built-in function in PHP.
Syntax :
arsort(array $array , $sort_type = SORT_REGULAR);
Parameter,
$array : Required. It is input array.
$sort_type : Optional. $sort_type may be used to modify the sorting behavior using below values.
- SORT_REGULAR - Default. Compare items normally (don't change types).
- SORT_NUMERIC - Compare items numerically.
- SORT_STRING - Compare items as strings.
- SORT_LOCALE_STRING - Compare items as strings that based on current locale.
- SORT_NATURAL - Compare items as strings using natural ordering.
- SORT_FLAG_CASE - It can be combined with SORT_STRING or SORT_NATURAL to sort strings case-insensitively.
Return Values :
It returns true on success or false on failure. A arsort() Function sorts an associative array in reverse order according to the value and maintain its preserved index key.
Let's see below example to understand php arsort() Function in details.
Comments