PHP中的DS \ Set类的Ds \ Set::sort()函数用于根据值对指定Set实例的元素进行就地排序。默认情况下,根据值的升序对Set进行排序。
用法:
void public Ds\Set::sort ([ callable $comparator ] )
参数:此函数接受比较器函数,根据该函数将在对Set进行排序时比较这些值。比较器应基于作为参数传递给它的两个值的比较返回以下值:
- 1:如果期望第一个元素小于第二个元素。
- -1:如果期望第一个元素大于第二个元素。
- 0:如果期望第一个元素等于第二个元素。
返回值:该函数不返回任何值。它只是根据传递的比较器函数对指定的Set实例进行排序。
以下示例程序旨在说明Ds \ Set::sort()函数:
程序1:
<?php
// PHP program to illustrate Ds\Set::sort() function
$set = new \Ds\Set([20, 10, 30]);
// sort the Set
$set->sort();
// Print the sorted Set
print_r($set);
?>
输出:
Ds\Set Object ( [0] => 10 [1] => 20 [2] => 30 )
程序2:
<?php
// PHP program to illustrate sort() function
$set = new \Ds\Set([20, 10, 30]);
// Declaring comparator function
$comp = function($first, $second){
if($first>$second)
return -1;
else if($first<$second)
return 1;
else
return 0;
};
// sort the Set using comparator
$set->sort($comp);
// Print the sorted Set
print_r($set);
?>
输出:
Ds\Set Object ( [0] => 30 [1] => 20 [2] => 10 )
参考:http://php.net/manual/en/ds-set.sort.php
相关用法
- PHP Ds\Map sort()用法及代码示例
- PHP sort()用法及代码示例
- PHP Ds\Vector sort()用法及代码示例
- PHP Ds\Deque sort()用法及代码示例
- PHP Ds\Sequence sort()用法及代码示例
- PHP ord()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP Ds\Set get()用法及代码示例
- PHP Ds\Set sum()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Set sort() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。