You are here

function simple_html_dom::find in simplehtmldom API 7

Same name and namespace in other branches
  1. 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom::find()
  2. 6 simplehtmldom/simple_html_dom.php \simple_html_dom::find()
4 calls to simple_html_dom::find()
simple_html_dom::getElementById in simplehtmldom/simple_html_dom.php
simple_html_dom::getElementByTagName in simplehtmldom/simple_html_dom.php
simple_html_dom::getElementsById in simplehtmldom/simple_html_dom.php
simple_html_dom::getElementsByTagName in simplehtmldom/simple_html_dom.php

File

simplehtmldom/simple_html_dom.php, line 576

Class

simple_html_dom

Code

function find($selector, $idx = null) {
  return $this->root
    ->find($selector, $idx);
}