Definition and Usage
The sort() function sorts an indexed array in ascending order.Tip: Use the rsort() function to sort an indexed array in descending order.
Syntax
sort(array,sortingtype);
| Parameter | Description |
|---|---|
| array | Required. Specifies the array to sort |
| sortingtype | Optional. Specifies how to compare the array elements/items. Possible values:
|
Example 1
Sort the elements of the $numbers array in ascending numerical order:
<?php
$numbers=array(4,6,2,22,11);
sort($numbers);
?>
$numbers=array(4,6,2,22,11);
sort($numbers);
?>