PHP rsort() 数组 函数 详解
php基础 2022-06-06 16:49:18小码哥的IT人生shichen
PHP rsort() 函数
实例
对数组 $cars 中的元素按字母进行降序排序:
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars);
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars);
$clength=count($cars);
for($x=0;$x<$clength;$x++)
{
echo $cars[$x];
echo "<br>";
}
?>
</body>
</html>
语法
rsort(array,sortingtype);
参数 | 描述 |
---|---|
array | 必需。规定要进行排序的数组。 |
sortingtype |
可选。规定如何比较数组的元素/项目。可能的值:
|
说明
rsort() 函数对数组的元素按照键值进行逆向排序。与 arsort() 的功能基本相同。
注释:该函数为 array 中的单元赋予新的键名。这将删除原有的键名而不仅是重新排序。
如果成功则返回 TRUE,否则返回 FALSE。
可选的第二个参数包含另外的排序标志。
技术细节
返回值: | TRUE on success. FALSE on failure |
PHP 版本: | 4+ |
更多实例
例子 1
对数组 $numbers 中的元素按数字进行降序排序:
<?php
$numbers=array(4,6,2,22,11);
rsort($numbers);
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
$numbers=array(4,6,2,22,11);
rsort($numbers);
$arrlength=count($numbers);
for($x=0;$x<$arrlength;$x++)
{
echo $numbers[$x];
echo "<br>";
}
?>
</body>
</html>
例子 2
把项目作为数字来比较,并对数组 $cars 中的元素进行降序排序:
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
$cars=array("Volvo","BMW","Toyota");
rsort($cars,SORT_NUMERIC);
$clength=count($cars);
for($x=0;$x<$clength;$x++)
{
echo $cars[$x];
echo "<br>";
}
?>
</body>
</html>