当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Map::ksort()用法及代码示例


Ds \ Map::ksort()函数是PHP中的内置函数,用于按键对Map元素进行就地排序。

用法:

void public Ds\Map::ksort ([ callable $comparator ] )

参数:该函数接受单个参数$comparator,该参数包含用于对Map的副本进行排序时比较值的函数。比较器应基于作为参数传递给它的两个值的比较返回以下值:


  • 如果期望第一个元素小于第二个元素,则返回1。
  • -1,如果期望第一个元素大于第二个元素。
  • 如果期望第一个元素等于第二个元素,则为0。

返回值:该函数不返回任何值。

以下示例程序旨在说明PHP中的Ds \ Map::ksort()函数:

程序1:

<?php  
// PHP program to illustrate ksort() function  
  
// Declare a Map  
$map = new \Ds\Map([1 => 20, 3 => 10, 2 => 30]);  
  
// Sort the Map element by key 
$map->ksort();  
  
// Display the map element 
print_r($map); 
  
?>
输出:
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 1
            [value] => 20
        )

    [1] => Ds\Pair Object
        (
            [key] => 2
            [value] => 30
        )

    [2] => Ds\Pair Object
        (
            [key] => 3
            [value] => 10
        )

)

程序2:

<?php  
// PHP program to illustrate ksort() function  
  
// Declare a Map  
$map = new \Ds\Map(["x" => "Geeks", 
        "a" => "for", "z" => "Geeks"]);  
  
// Sort the Map element by key 
$map->ksort();  
  
// Display sorted element 
print_r($map); 
  
?> 
输出:
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => for
        )

    [1] => Ds\Pair Object
        (
            [key] => x
            [value] => Geeks
        )

    [2] => Ds\Pair Object
        (
            [key] => z
            [value] => Geeks
        )

)

参考: https://www.php.net/manual/en/ds-map.ksort.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Map::ksort() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。