PHP sort() 函数
定义和用法
sort() 函数对索引数组进行升序排序。
注释:本函数为数组中的单元赋予新的键名。原有的键名将被删除。
Returns TRUE if successful, otherwise FALSE.
Tip:Use rsort() The function sorts the index array in descending order.
Syntax
sort(array,sortingtype);
Parameters | Description |
---|---|
array | Required. Specify the array to be sorted. |
sortingtype |
Optional. Specify how to compare array elements/items. Possible values:
|
Technical Details
Return Value: | Returns TRUE if successful, FALSE otherwise. |
PHP Version: | 4+ |
More Examples
Example 1
Sort elements of the array $numbers in ascending order by number:
<?php $numbers=array(4,6,2,22,11); sort($numbers); ?>