📜  PHP | Ds\Sequence sorted()函数

📅  最后修改于: 2022-05-13 01:56:43.888000             🧑  作者: Mango

PHP | Ds\Sequence sorted()函数

Ds\Sequence::sorted()函数是PHP中的一个内置函数,用于返回序列元素的排序副本。

句法:

Ds\Sequence abstract public Ds\Sequence::sorted( $comparator )

参数:此函数接受一个包含比较函数的参数$comparator 。比较函数返回一个小于或大于或等于零的整数值。

返回值:该函数返回排序后的序列副本。

下面的程序说明了PHP中的Ds\Sequence::sorted()函数:

方案一:

sorted());
  
?>

输出:

Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 4
    [3] => 5
    [4] => 6
    [5] => 9
    [6] => 9
    [7] => 12
)

方案二:

sorted());
  
?>

输出:

Ds\Vector Object
(
    [0] => Abc
    [1] => GFG
    [2] => Geeks
    [3] => for
)

参考: http: PHP。 PHP