PHP sort() Function
Example
Sort the elements of the $cars array in ascending alphabetical order:
<?php
$cars = array("Volvo", "BMW", "Toyota");
sort($cars);
?>
Try it Yourself »
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, sorttype)
Parameter Values
Parameter | Description |
---|---|
array | Required. Specifies the array to sort |
sorttype | Optional. Specifies how to compare the array elements/items. Possible values:
|
Technical Details
Return Value: | TRUE |
---|---|
PHP Version: | 4+ |
PHP Changelog: | PHP 8.2.0: Now returns TRUE (previously it returned bool) |
More Examples
Example
Sort the elements of the $numbers array in ascending numerical order:
<?php
$numbers = array(4, 6, 2, 22, 11);
sort($numbers);
?>
Try it Yourself »
❮ PHP Array Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.