我正在使用简单的 html dom 来解析 html 页面.....这是我的代码..
include('simple_html_dom.php');
$html = file_get_html($my_url);
foreach($html->find('div') as $ul) {
echo $ul;
}
而且我还尝试了许多其他方法。我仍然收到此错误。错误:
Call to a member function find() on a non-object
我也尝试过其他标签...
$html->find('a');
$html->find('h3');
//But still same above error
谁能帮我解决这个错误..提前谢谢