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


PHP Ds\Set sort()用法及代碼示例


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



相關用法


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