update : 2015.11.03
php.shukuma.com검색:
|
ArrayObject::getIteratorClass(PHP 5 >= 5.1.0) ArrayObject::getIteratorClass — Gets the iterator classname for the ArrayObject. 설명
public string ArrayObject::getIteratorClass
( void
)
Gets the class name of the array iterator that is used by ArrayObject::getIterator(). 인수이 함수는 인수가 없습니다. 반환값Returns the iterator class name that is used to iterate over this object. 예제
Example #1 ArrayObject::getIteratorClass() example
<?php 위 예제의 출력: string(13) "ArrayIterator" string(15) "MyArrayIterator" |