iterator_count

(PHP 5 >= 5.1.0, PHP 7)

iterator_count�����������Ԫ�صĸ���

˵��

iterator_count ( Traversable $iterator ) : int

����������е�Ԫ�ظ�����

����

iterator

Ҫ�����ĵ�������

����ֵ

������iterator�е�Ԫ�ظ�����

����

Example #1 iterator_count() example

<?php
$iterator 
= new ArrayIterator(array('recipe'=>'pancakes''egg''milk''flour'));
var_dump(iterator_count($iterator));
?>

�������̻������

int(4)