<?php class myIterator implements Iterator { public $bar = [5, 4, 3, 2, 1]; public function valid() { return $this->key() !== null; } public function current() { return current($this->bar); } public function key() { return key($this->bar); } public function next() { return next($this->bar); } public function rewind() { rewind($this->bar); } } $it = new myIterator(); while ($it->valid()) { var_dump($it->current()); $it->next(); }
You have javascript disabled. You will not be able to edit any code.