You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
271 B

<?php
abstract class SearchIterator extends FilterIterator
{
private $done = false;
function rewind() {
parent::rewind();
$this->done = false;
}
function valid() {
return !$this->done && parent::valid();
}
function next() {
$this->done = true;
}
}
?>