You are here

public function Scanner::remainingChars in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/masterminds/html5/src/HTML5/Parser/Scanner.php \Masterminds\HTML5\Parser\Scanner::remainingChars()

Get all characters until EOF.

This consumes characters until the EOF.

Return value

int The number of characters remaining.

File

vendor/masterminds/html5/src/HTML5/Parser/Scanner.php, line 218

Class

Scanner
The scanner.

Namespace

Masterminds\HTML5\Parser

Code

public function remainingChars() {
  return $this->is
    ->remainingChars();
}