Get the current character. Note, this does not advance the pointer.
string The current character.
public function current() { if ($this->char < $this->EOF) { return $this->data[$this->char]; } return false; }