当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。