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


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


Ds \ Map::ksorted()函数是PHP中的内置函数,用于返回按键排序的副本。

用法:

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

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


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

返回值:此函数返回按键排序的Map副本。

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

程序1:

<?php  
// PHP program to illustrate ksorted() function  
  
// Declare a Map  
$map = new \Ds\Map([1 => 20, 3 => 10, 2 => 30]);  
  
// Print the sorted copy of Map by key 
print_r($map->ksorted());  
  
?>
输出:
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 ksorted() function  
  
// Declare a Map  
$map = new \Ds\Map(["x" => "Geeks", 
        "a" => "for", "z" => "Geeks"]);  
  
// Print the sorted copy Map  
print_r($map->ksorted());  
  
?> 
输出:
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.ksorted.php



相关用法


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