it = $it; } function rewind() { // nothing to do } function valid() { return $this->it->valid(); } function current() { return $this->it->current(); } function key() { return $this->it->key(); } function next() { $this->it->next(); } } ?>