Get the next character. Note: This advances the pointer.
string The next character.
public function next() { ++$this->char; if ($this->char < $this->EOF) { return $this->data[$this->char]; } return false; }