Look ahead without moving cursor.
Overrides InputStream::peek
public function peek() { if ($this->char + 1 <= $this->EOF) { return $this->data[$this->char + 1]; } return false; }