You are here

function str_get_html in simplehtmldom API 5.2

Same name and namespace in other branches
  1. 6 simplehtmldom/simple_html_dom.php \str_get_html()
  2. 7 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

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;
}