Gets the next character to be returned by read() without removing it from the input buffer. @ignore
protected function peek() { if ($this->pos < $this->len) { return $this->data[$this->pos]; } else { return -1; } }