You are here

function simple_html_dom::load_file in simplehtmldom API 7

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

simple_html_dom

Code

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