You are here

protected function simple_html_dom::skip in simplehtmldom API 7

Same name and namespace in other branches
  1. 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom::skip()
  2. 6 simplehtmldom/simple_html_dom.php \simple_html_dom::skip()
1 call to simple_html_dom::skip()
simple_html_dom::read_tag in simplehtmldom/simple_html_dom.php

File

simplehtmldom/simple_html_dom.php, line 862

Class

simple_html_dom

Code

protected function skip($chars) {
  $this->pos += strspn($this->doc, $chars, $this->pos);
  $this->char = $this->pos < $this->size ? $this->doc[$this->pos] : null;

  // next
}