rsort() 函数按降序对索引数组进行排序。
提示:使用种类()函数按升序对索引数组进行排序。
rsort(
array, sorttype)
Parameter | Description |
---|---|
array | Required. Specifies the array to sort |
sorttype | Optional. Specifies how to compare the array elements/items. Possible values:
|
返回值: | 成功则为真。失败时为 FALSE |
---|---|
PHP 版本: | 4+ |
对项目进行数字比较并按降序对 $cars 数组的元素进行排序:
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!