简单的dom解析器double find()不起作用?

时间:2015-06-09 12:16:44

标签: php dom simpledom

enter image description here

上面是我的DOM,我希望4小时前收到,但我收到了错误

Fatal error: Call to a member function find() on a non-object 

我的php看起来像这样

$time_ago = $html->find('.entry .unvoted',0)->find('.tagline .live-timestamp',0)->plaintext;

echo $time_ago;

我知道我可以使用一个find(),它将是find('tagline .live-timestamp'),但我想知道为什么double find()不起作用。

1 个答案:

答案 0 :(得分:0)

我得到了它的工作

$time_ago = $go->find('.entry',0)->find('.tagline .live-timestamp',0)->plaintext;

因为有多个名为unvoted

的班级