php 数组从小到大排序,PHP 数组排序-php数组的排序函数

数组中的元素能够以字母或数字顺序进行升序或降序排序。

PHP - 数组的排序函数

在本节中,我们将学习如下 PHP 数组排序函数:

sort() - 以升序对数组排序

rsort() - 以降序对数组排序

asort() - 根据值,以升序对关联数组进行排序

ksort() - 根据键,以升序对关联数组进行排序

arsort() - 根据值,以降序对关联数组进行排序

krsort() - 根据键,以降序对关联数组进行排序

对数组进行升序排序 - sort()

下面的例子按照字母升序对数组 $cars 中的元素进行排序:

实例

$cars=array("porsche","BMW","Volvo");

sort($cars);

?>

运行:

$cars=array("porsche","BMW","Volvo");

sort($cars);

$clength=count($cars);

for($x=0;$x

{

echo $cars[$x];

echo "
";

}

?>

运行结果:BMW

Volvo

porsche

下面的例子按照数字升序对数组 $numbers 中的元素进行排序:

实例

$numbers=array(3,5,1,22,11)

你可能感兴趣的:(php,数组从小到大排序)