Arrange the elements of the $cars
array in ascending alphabetical order.
<?php $cars = array(“Volvo”, “BMW”, “Toyota”); sort($cars); ?> |
The sort()
function arranges an indexed array in ascending order.
Tip: Use the rsort()
function to sort an indexed array in descending order.
sort(array, sorttype) |
Parameter |
Description |
array |
Required. Specifies the array to be sorted. |
sorttype |
Optional. Defines how to compare the array elements/items. Possible values are:
|
Return Value: |
TRUE |
PHP Version: |
4+ |
PHP Changelog: |
PHP 8.2.0: Now returns |
Arrange the elements of the $numbers
array in ascending numerical order.
<?php $numbers = array(4, 6, 2, 22, 11); sort($numbers); ?> |