Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
168 views

PHP: SeekableIterator::seek()

If I want to implement seek() to complete the SeekableIterator interface, should I internally revert to the old position if the seeked position is invalid? Like this: public function seek( $position ...
0
votes
1answer
345 views

PHP: Implementing the SeekableIterator interface

I'm currently writing a class that implements the SeekableIterator interface and have run into a problem. I have two internal arrays that I am using and would like to allow for iteration through both ...