PHP Array Functions

asort() Function

Definition and Usage

The asort() function sorts an associative array in ascending order, according to the value.


Syntax

asort(array)


Parameter Description
array Required. Specifies the array to use

Example

Sort an associative array in ascending order, according to the value:

<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
asort($age);
?>

Run Example>>