Ds \ Sequence::sorted()函数是PHP中的内置函数,用于返回序列元素的排序副本。
用法:
Ds\Sequence abstract public Ds\Sequence::sorted( $comparator )
参数:该函数接受一个包含比较函数的单个参数$comparator。比较函数返回一个小于或大于或等于零的整数值。
返回值:此函数返回序列的排序副本。
以下示例程序旨在说明PHP中的Ds \ Sequence::sorted()函数:
程序1:
<?php
// Create new sequence
$seq = new \Ds\Vector([2, 4, 1, 9, 6, 5, 12, 9]);
// Use sorted() function to sort
// the sequence element
print_r($seq->sorted());
?>
输出:
Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 4 [3] => 5 [4] => 6 [5] => 9 [6] => 9 [7] => 12 )
程序2:
<?php
// Create new sequence
$seq = new \Ds\Vector(["Geeks", "GFG", "Abc", "for"]);
// Use sorted() function to sort
// the sequence element
print_r($seq->sorted());
?>
输出:
Ds\Vector Object ( [0] => Abc [1] => GFG [2] => Geeks [3] => for )
参考: http://php.net/manual/en/ds-sequence.sorted.php
相关用法
- PHP Ds\Map sorted()用法及代码示例
- PHP Ds\Set sorted()用法及代码示例
- PHP Ds\Deque sorted()用法及代码示例
- PHP Ds\Vector sorted()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.lab()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- d3.js d3.set.add()用法及代码示例
- d3.js d3.max()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Ds\Sequence sorted() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。