You are here

function str_get_html in simplehtmldom API 7

Same name and namespace in other branches
  1. 5.2 simplehtmldom/simple_html_dom.php \str_get_html()
  2. 6 simplehtmldom/simple_html_dom.php \str_get_html()
1 call to str_get_html()
example_advanced_selector.php in simplehtmldom/example/example_advanced_selector.php
1 string reference to 'str_get_html'
simplehtmldom.module in ./simplehtmldom.module

File

simplehtmldom/simple_html_dom.php, line 44

Code

function str_get_html($str, $lowercase = true) {
  $dom = new simple_html_dom();
  $dom
    ->load($str, $lowercase);
  return $dom;
}