當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Sequence sorted()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Ds\Sequence sorted() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。