📜  PHP | Ds\Map sorted()函数

📅  最后修改于: 2022-05-13 01:56:41.751000             🧑  作者: Mango

PHP | Ds\Map sorted()函数

Ds\Map::sorted()函数是PHP中的一个内置函数,用于获取根据值排序的指定 Map 实例的副本。默认情况下,Map 的副本按照值的递增顺序进行排序。

句法:

Ds\Map public Ds\Map::sorted( $comparator )

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

  • 1:如果第一个元素预计小于第二个元素。
  • -1:如果预期第一个元素大于第二个元素。
  • 0:如果预期第一个元素等于第二个元素。

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

注意:此函数不会修改或影响实际的 Map 实例。

下面的程序说明了PHP中的Ds\Map::sorted()函数:

方案一:

 20, 2 => 10, 3 => 30]);
  
// Print the sorted copy Map
print_r($map->sorted());
  
?>

输出:

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

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

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

方案二:

 20, 2 => 10, 3 => 30]);
  
// Declaring comparator function
$comp = function($first, $second){
        if($first>$second)
            return -1;
        else if($first<$second)
            return 1;
        else 
            return 0;
};
  
// Print the sorted copy Map
print_r($map->sorted());
  
?>

输出:

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 3
            [value] => 30
        )

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

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

)

参考: http: PHP。 PHP