protected function simple_html_dom::skip in simplehtmldom API 6
Same name and namespace in other branches
- 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom::skip()
- 7 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
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
}