SPL-StandardPHPLibrary
norewinditerator.inc
Go to the documentation of this file.
00001 <?php
00002 
00018 class NoRewindIterator extends IteratorIterator
00019 {
00022     function rewind()
00023     {
00024         // nothing to do
00025     }
00026 }
00027 
00028 ?>