Ds \ Set::sorted()函數是PHP中的內置函數,用於返回給定集合的排序副本。
用法:
Ds\Set public Ds\Set::sorted ([ callable $comparator ])
參數:此函數接受比較器函數,根據該函數將在對Set進行排序時比較這些值。比較器應基於作為參數傳遞給它的兩個值的比較返回以下值:
- 1:如果期望第一個元素小於第二個元素。
- -1:如果期望第一個元素大於第二個元素。
- 0:如果期望第一個元素等於第二個元素。
返回值:它還原給定集合的排序副本。
以下示例程序旨在說明PHP中的Ds \ Set::sorted()函數:
程序1:
<?php
// PHP program to illustrate sorted() function
$set = new \Ds\Set([20, 10, 30]);
// sort the Set
print_r($set->sorted());
?>
輸出:
Ds\Set Object ( [0] => 10 [1] => 20 [2] => 30 )
程序2:
<?php
// Declare a new set
$set = new \Ds\Set([2, 3, 6, 5, 7, 1, 4]);
$sorted = $set->sorted(function($a, $b) {
return $b <=> $a;
});
print_r($sorted);
?>
輸出:
Ds\Set Object ( [0] => 7 [1] => 6 [2] => 5 [3] => 4 [4] => 3 [5] => 2 [6] => 1 )
參考: https://www.php.net/manual/en/ds-set.sorted.php
相關用法
- PHP Ds\Map sorted()用法及代碼示例
- PHP Ds\Vector sorted()用法及代碼示例
- PHP Ds\Deque sorted()用法及代碼示例
- PHP Ds\Sequence sorted()用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js abs()用法及代碼示例
- PHP Ds\Set last()用法及代碼示例
- PHP dir()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Set sorted() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。