我正在使用 ganon dom 解析器进行 HTML 解析并尝试从 DIV 块中获取内容,但由于某种原因返回的对象不起作用,下面是我的代码,我正在使用:
<?php
set_time_limit(0);
#Include the dom parser lib.
require_once('ganon.php');
$html = file_get_dom('http://jlc.watchprosite.com/?show=forumpost&fi=2&pi=1818820&ti=279373&msid=&s=');
print_r($html("div[id='sidebar']")->childCount());
?>
这给
Fatal error: Call to a member function childCount() on a non-object in D:\xampp\htdocs\govberg\test.php on line 7
当我这样做print_r($html)
时,它正在打印一个大对象。
任何人都能够指出出了什么问题..