update : 2015.11.03
php.shukuma.com검색:
|
iterator_count(PHP 5 >= 5.1.0) iterator_count — Count the elements in an iterator 설명
Count the elements in an iterator.
iterator_count() is not guaranteed to retain the current
position of the 인수
반환값
The number of elements in 예제
Example #1 iterator_count() example
<?php 위 예제의 출력: int(4) Example #2 iterator_count() modifies position
<?php 위 예제의 출력: string(3) "one" int(3) NULL Example #3 iterator_count() in foreach loops
<?php 위 예제의 출력: 0: one (3) |