You are here

function simple_html_dom::getElementByTagName in simplehtmldom API 7

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

File

simplehtmldom/simple_html_dom.php, line 971

Class

simple_html_dom

Code

function getElementByTagName($name) {
  return $this
    ->find($name, 0);
}