php-src/ext/spl/examples/seekableiterator.inc
2003-11-17 00:55:37 +00:00

16 lines
236 B
PHP
Executable File

<?php
interface SeekableIterator implements Iterator
{
function seek($index);
/* $this->rewind();
$position = 0;
while($position < $index && $this->hasMore()) {
$this->next();
$position++;
}
return $position;
}*/
}
?>