Consume whitespace. Whitespace in HTML5 is: formfeed, tab, newline, space.
int The length of the matched whitespaces.
public function whitespace() { if ($this->char >= $this->EOF) { return false; } $len = strspn($this->data, "\n\t\f ", $this->char); $this->char += $len; return $len; }