SPL-StandardPHPLibrary
infiniteiterator.inc
Go to the documentation of this file.
1 <?php
2 
34 {
38  function next()
39  {
40  $this->getInnerIterator()->next();
41  if (!$this->getInnerIterator()->valid())
42  {
43  $this->getInnerIterator()->rewind();
44  }
45  }
46 }
47 
48 ?>
Basic Iterator wrapper.
An infinite Iterator.
next()
Move the inner Iterator forward to its next element or rewind it.