PHP Ds\Set count()函数
PHP中 Ds\Set 类的Ds\Set::count()函数是一个内置函数,用于计算 Set 中存在的值的数量。这也称为 Set 实例的大小。
句法:
int public Ds\Set::count()
参数:该函数不接受任何参数。
返回值:此函数返回 Set 实例中存在的值的数量。
下面的程序说明了Ds\Set::count()函数:
方案一:
count());
?>
输出:
object(Ds\Set)#1 (3) {
[0]=>
int(10)
[1]=>
int(15)
[2]=>
int(21)
}
Count is : 3
方案二:
count());
?>
输出:
object(Ds\Set)#1 (3) {
[0]=>
string(5) "Geeks"
[1]=>
string(3) "for"
[2]=>
string(5) "Keegs"
}
Count is : 3
参考文献:http:// PHP.NET /手动/ EN / DS-set.count。 PHP