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
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Map::ksort() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。