AnsPress_Query::next()
Description #
Set up the next object and iterate index.
Source #
File: includes/class-query.php
public function next() {
++$this->current;
$this->object = $this->objects[ $this->current ];
return $this->object;
}
Expand full source code Collapse full source code View on GitHub: includes/class-query.php:220
Add your comment