(PECL ds >= 1.0.0)
Ds\Set::sorted — 返回排序后的副本
comparator
比较函数必须返回一个小于、等于或大于零的整数,如果第一个参数分别被认为小于、等于或大于第二个参数。
返回集合的排序副本。
示例 #1 Ds\Set::sorted() 示例
<?php
$set = new \Ds\Set([4, 5, 1, 3, 2]);
print_r($set->sorted());
?>
以上示例将输出类似以下内容
Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )
示例 #2 使用比较器的 Ds\Set::sorted() 示例
<?php
$set = new \Ds\Set([4, 5, 1, 3, 2]);
$sorted = $set->sorted(function($a, $b) {
return $b <=> $a;
});
print_r($sorted);
?>
以上示例将输出类似以下内容
Ds\Set Object ( [0] => 5 [1] => 4 [2] => 3 [3] => 2 [4] => 1 )