SPL Funkcje
PHP Manual

iterator_count

(PHP 5 >= 5.1.0)

iterator_countCount the elements in an iterator

Opis

int iterator_count ( Traversable $iterator )

Count the elements in an iterator.

Parametry

iterator

The iterator being counted.

Zwracane wartości

The number of elements in iterator.

Przykłady

Przykład #1 iterator_count() example

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

Powyższy przykład wyświetli:

int(4)


SPL Funkcje
PHP Manual