Take a peek at the next character in the data.
string The next character.
public function peek() { if ($this->char + 1 < $this->EOF) { return $this->data[$this->char + 1]; } return false; }