目录

PHP rsort() 函数

❮ PHP 数组参考

示例

按字母降序对 $cars 数组的元素进行排序:

<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars);
?>
亲自试一试 »

定义和用法

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:
  • 0 = SORT_REGULAR - Default. Compare items normally (don't change types)
  • 1 = SORT_NUMERIC - Compare items numerically
  • 2 = SORT_STRING - Compare items as strings
  • 3 = SORT_LOCALE_STRING - Compare items as strings, based on current locale
  • 4 = SORT_NATURAL - Compare items as strings using natural ordering
  • 5 = SORT_FLAG_CASE -


技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 4+

更多示例

示例

按数字降序对 $numbers 数组的元素进行排序:

<?php
$numbers=array(4,6,2,22,11);
rsort($numbers);
?>
亲自试一试 »

示例

对项目进行数字比较并按降序对 $cars 数组的元素进行排序:

<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
?>
亲自试一试 »

❮ PHP 数组参考