The IteratorAggregate interfaceIntroductionInterface to create an external Iterator. Interface synopsis
IteratorAggregate
extends
Traversable
/* Methods */
public Traversable IteratorAggregate::getIterator()
ExamplesExample #1 Basic usage The above example will output something similar to: string(7) "key one" string(8) "item one" string(7) "key two" string(8) "item two" string(9) "key three" string(10) "item three"
|