• php之快速入门学习-11(数组排序)


    PHP 数组排序


    数组中的元素可以按字母或数字顺序进行降序或升序排列。


    PHP - 数组排序函数

    在本章中,我们将一一介绍下列 PHP 数组排序函数:

    • sort() - 对数组进行升序排列
    • rsort() - 对数组进行降序排列
    • asort() - 根据关联数组的值,对数组进行升序排列
    • ksort() - 根据关联数组的键,对数组进行升序排列
    • arsort() - 根据关联数组的值,对数组进行降序排列
    • krsort() - 根据关联数组的键,对数组进行降序排列

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

    下面的实例将 $cars 数组中的元素按照字母升序排列:

    <?php
    $cars=array("Volvo","BMW","Toyota");
    sort($cars);
    ?>

    下面的实例将 $numbers 数组中的元素按照数字升序排列:

    <?php
    $numbers=array(4,6,2,22,11);
    sort($numbers);
    ?>

    rsort() - 对数组进行降序排列

    下面的实例将 $cars 数组中的元素按照字母降序排列:

    <?php
    $cars=array("Volvo","BMW","Toyota");
    rsort($cars);
    ?>

    下面的实例将 $numbers 数组中的元素按照数字降序排列:

    <?php
    $numbers=array(4,6,2,22,11);
    rsort($numbers);
    ?>

    asort() - 根据数组的值,对数组进行升序排列

    下面的实例根据数组的值,对关联数组进行升序排列:

    <?php
    $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
    asort($age);
    ?>

    ksort() - 根据数组的键,对数组进行升序排列

    下面的实例根据数组的键,对关联数组进行升序排列:

    <?php
    $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
    ksort($age);
    ?>

    arsort() - 根据数组的值,对数组进行降序排列

    下面的实例根据数组的值,对关联数组进行降序排列:

    <?php
    $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
    arsort($age);
    ?>

    krsort() - 根据数组的键,对数组进行降序排列

    下面的实例根据数组的键,对关联数组进行降序排列:

    <?php
    $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
    krsort($age);
    ?>
  • 相关阅读:
    Lua的各种资源2
    Lua的各种资源1
    游戏AI:行为树
    关于资源包存储资源路径名的方案
    scrapy爬虫笔记(创建一个新的项目并运行)
    scrapy爬虫笔记(安装)
    运行scrapy报错:You do not have a working installation of the service_identity module
    运行scrapy demo时报错:[twisted] CRITICAL: Unhandled error in Deferred
    python3下使用有道翻译网页版实现翻译功能~~~附源码
    python3+openCV实现图片的人脸人眼检测,原理+参数+源代码
  • 原文地址:https://www.cnblogs.com/cisum/p/7975860.html
Copyright © 2020-2023  润新知