PHP arsort() Function
Example
Sort an associative array in descending order, according to the value:
<?php
	$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
arsort($age);
?>
Run example »
Definition and Usage
The arsort() function sorts an associative array in descending order, according to the value.
Tip: Use the asort() function to sort an associative array in ascending order, according to the value.
Tip: Use the krsort() function to sort an associative array in descending order, according to the key.
Syntax
	arsort(array,sortingtype);
| Parameter | Description | 
|---|---|
| array | Required. Specifies the array to sort | 
| sortingtype | Optional. Specifies how to compare the array elements/items. Possible values:
    
  | 
  
Technical Details
| Return Value: | TRUE on success. FALSE on failure | 
|---|---|
| PHP Version: | 4+ | 
 PHP Array Reference

