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


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



Ds\Set::sort() 函數可以對集合進行就地排序。

用法

public void Ds\Set::sort([ callable $comparator ] )

Ds\Set::sort() 函數可以使用可選的比較器函數就地對集合進行排序。

Ds\Set::sort() 函數不返回任何值。

例子1

<?php 
   $set = new \Ds\Set([20, 10, 30, 50, 40]); 
   $set->sort(); 
   
   print_r($set); 
?>

例子2

<?php
   $set = new \Ds\Set([4, 5, 1, 3, 2]);
   $set->sort(function($x, $y) {
      return $y <=> $x;
   });
   print_r($set);
?>

相關用法


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