PHP sort() Function
Example
Sort the elements of the array $cars in alphabetical order:
<?php $cars = array("Volvo", "BMW", "Toyota"); sort($cars); ?>
Definition and Usage
The sort() function sorts the index array in ascending order.
Note:This function assigns new key names to the elements of an array. The original key names will be deleted.
Returns TRUE if successful, otherwise FALSE.
Tip:Please use rsort() The function sorts the indexed array in descending order.
Syntax
sort(array,sortingtype);
Parameters | Description |
---|---|
array | Required. Specifies the array to be sorted. |
sortingtype |
Optional. Specifies how to compare the elements/items of the array. Possible values:
|
Technical Details
Return Value: | Returns TRUE if successful, FALSE otherwise. |
PHP Version: | 4+ |
More Examples
Example 1
Sort the elements of the array $numbers in ascending order by number:
<?php $numbers=array(4,6,2,22,11); sort($numbers); ?>