📅  最后修改于: 2023-12-03 15:03:36.243000             🧑  作者: Mango
count()
函数用于获取 ArrayIterator 对象中元素的数量。这个函数与 PHP 原始数组中的 count()
函数类似。
int ArrayIterator::count( void )
该函数没有参数。
返回一个整数,表示 ArrayIterator 对象中元素的数量。
以下代码演示了如何使用 count()
函数:
$fruits = new ArrayIterator(array('apple', 'banana', 'cherry'));
echo $fruits->count(); // 输出 3
count()
函数不应该被重载。count()
返回的结果。