我想在url上使用simple_html_dom
我用过这个:
include_once('/simple_html_dom.php');
但返回此错误:
Fatal error: Call to a member function find() on a non-object in test.php on line 9
我CHMOD目录和文件到777,但没有变化。
我使用了这种方法:
$file = realpath(dirname(__FILE__)."../simple_html_dom.php");
include_once($file);
但返回错误:filename不能为空。
SAFE_MODE为ON,我不是服务器管理员。
任何想法?