📜  PHP | ArrayIterator count()函数

📅  最后修改于: 2022-05-13 01:56:26.643000             🧑  作者: Mango

PHP | ArrayIterator count()函数

ArrayIterator::count()函数是PHP中的一个内置函数,用于对数组迭代器的元素进行计数。
句法:

int ArrayIterator::count( void )

参数:此函数不接受任何参数。
返回值:此函数返回数组迭代器中存在的元素数。
下面的程序说明了PHP中的 ArrayIterator::count()函数:
方案一:

php
count();
  
?>


php
count();
  
?>


输出:
5

方案二:

PHP

count();
  
?>
输出:
3

参考: https://www. PHP.net/manual/en/arrayiterator.count。 PHP