我想在 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);
但返回错误:文件名不能为空。
SAFE_MODE 为 ON,我不是服务器管理员。
有任何想法吗 ?