You are here

function simple_html_dom_node::getElementsByTagName in simplehtmldom API 7

Same name and namespace in other branches
  1. 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom_node::getElementsByTagName()
  2. 6 simplehtmldom/simple_html_dom.php \simple_html_dom_node::getElementsByTagName()

File

simplehtmldom/simple_html_dom.php, line 470

Class

simple_html_dom_node

Code

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