function simple_html_dom::load_file in simplehtmldom API 7
Same name and namespace in other branches
- 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom::load_file()
- 6 simplehtmldom/simple_html_dom.php \simple_html_dom::load_file()
1 call to simple_html_dom::load_file()
- simple_html_dom::__construct in simplehtmldom/
simple_html_dom.php
File
- simplehtmldom/
simple_html_dom.php, line 553
Class
Code
function load_file() {
$args = func_get_args();
$this
->load(call_user_func_array('file_get_contents', $args), true);
}