Get all characters until EOF.
This consumes characters until the EOF.
int The number of characters remaining.
public function remainingChars() { if ($this->char < $this->EOF) { $data = substr($this->data, $this->char); $this->char = $this->EOF; return $data; } return ''; // false; }