PHP rsort() 函數(shù)
PHP rsort() 函數(shù)
實(shí)例
對(duì)數(shù)組 $cars 中的元素按字母進(jìn)行降序排序:
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars);
?>
$cars=array("Volvo","BMW","Toyota");
rsort($cars);
?>
運(yùn)行實(shí)例 ?
定義和用法
rsort() 函數(shù)對(duì)數(shù)值數(shù)組進(jìn)行降序排序。
提示:請(qǐng)使用 sort() 函數(shù)對(duì)數(shù)值數(shù)組進(jìn)行升序排序。
語法
rsort(array,sortingtype);
參數(shù) | 描述 |
---|---|
array | 必需。規(guī)定要進(jìn)行排序的數(shù)組。 |
sortingtype | 可選。規(guī)定如何排列數(shù)組的元素/項(xiàng)目??赡艿闹担?
|
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更多實(shí)例
實(shí)例 1
對(duì)數(shù)組 $numbers 中的元素按數(shù)字進(jìn)行降序排序:
<?php
$numbers=array(4,6,2,22,11);
rsort($numbers);
?>
$numbers=array(4,6,2,22,11);
rsort($numbers);
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
把每一項(xiàng)作為數(shù)字來處理,并對(duì)數(shù)組 $cars 中的元素進(jìn)行降序排序:
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
?>
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
?>
運(yùn)行實(shí)例 ?
