📜  PHP | ArrayIterator count()函数(1)

📅  最后修改于: 2023-12-03 15:03:36.243000             🧑  作者: Mango

PHP | ArrayIterator count()函数

count() 函数用于获取 ArrayIterator 对象中元素的数量。这个函数与 PHP 原始数组中的 count() 函数类似。

语法
int ArrayIterator::count( void )
参数

该函数没有参数。

返回值

返回一个整数,表示 ArrayIterator 对象中元素的数量。

例子

以下代码演示了如何使用 count() 函数:

$fruits = new ArrayIterator(array('apple', 'banana', 'cherry'));

echo $fruits->count(); // 输出 3
注意事项
  • count() 函数不应该被重载。
  • 改变 ArrayIterator 对象中的元素数量(例如添加或删除元素)会影响 count() 返回的结果。