PHP程序按升序和降序对整数数组进行排序

给定一个整数数组,我们必须在PHP中按升序和降序对它们进行排序。

数组排序方法

在PHP中,有两种用于对数组进行排序的方法,

  1. sort()–用于按升序对数组进行排序。

  2. rsort()–用于按降序对数组进行排序。

用于按升序对数组排序的PHP代码

<?php

//declaring & initializing array of integers

$array = array(10, 80, 100, 11, 22, 21, 19, 10, 88, 89);

//以升序对数组进行排序

sort ($array);

//排序后打印数组元素              

foreach( $array as $num ){

    echo $num."\n";

}

?>

输出结果

10

10

11

19

21

22

80

88

89

100

PHP代码以降序对数组进行排序

<?php

//declaring & initializing array of integers

$array = array(10, 80, 100, 11, 22, 21, 19, 10, 88, 89);

//按降序排列数组

rsort ($array);

//排序后打印数组元素              

foreach( $array as $num ){

    echo $num."\n";

}

?>

输出结果

100

89

88

80

22

21

19

11

10

10

以上是 PHP程序按升序和降序对整数数组进行排序 的全部内容, 来源链接: utcz.com/z/350146.html

回到顶部