function str_get_html in simplehtmldom API 6
Same name and namespace in other branches
- 5.2 simplehtmldom/simple_html_dom.php \str_get_html()
- 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
1 string reference to 'str_get_html'
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;
}