错误消息:http://i.imgur.com/4UZIlks.png
我尝试使用以下代码抓取此论坛https://forum.lowyat.net/topic/3424996的内容帖子。
$rows = $html->find('.post_table');
$array = array();
foreach($rows as $go){
$post_text = $go->find('.post_td_right > .post_text')->innertext;
$array[]= array(
'content'=> $post_text
);
}
echo json_encode($array);
循环不一致我想知道为什么。我可以得到一些结果,但是有一个错误,说试图获取非对象的属性,为什么?