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


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


PHP中Ds \ Set類的Ds \ Set::count()函數是一個內置函數,用於對Set中存在的值進行計數。這也稱為Set實例的大小。

用法:

int public Ds\Set::count()

參數:該函數不接受任何參數。


返回值:此函數返回Set實例中存在的值數。

以下示例程序旨在說明Ds \ Set::count()函數:

程序1:

<?php  
  
// Declare new Set 
$set = new \Ds\Set([10, 15, 21]);  
  
// Display the Set element  
var_dump($set);  
  
// Display count of elements  
// present in the Set 
echo "Count is:"; 
print_r($set->count()); 
  
?>  
輸出:
object(Ds\Set)#1 (3) {
  [0]=>
  int(10)
  [1]=>
  int(15)
  [2]=>
  int(21)
}
Count is:3

程序2:

<?php  
  
// Declare new Set 
$set = new \Ds\Set(["Geeks", "for", "Keegs"]);  
  
// Display the Set element  
var_dump($set);  
  
// Display count of elements  
// present in the Set 
echo "Count is:"; 
print_r($set->count()); 
  
?> 
輸出:
object(Ds\Set)#1 (3) {
  [0]=>
  string(5) "Geeks"
  [1]=>
  string(3) "for"
  [2]=>
  string(5) "Keegs"
}
Count is:3

參考: http://php.net/manual/en/ds-set.count.php



相關用法


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