You are here

function simple_html_dom::loadFile in simplehtmldom API 7

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

File

simplehtmldom/simple_html_dom.php, line 973

Class

simple_html_dom

Code

function loadFile() {
  $args = func_get_args();
  $this
    ->load(call_user_func_array('file_get_contents', $args), true);
}