实例化新的PHPCrawl类会引发错误“调用未定义的方法stdClass :: receivePage()”

时间:2011-07-06 06:21:11

标签: php oop phpcrawl

我使用foreach循环遍历多个种子网址。在每个循环中,我使用PHPCrawl和下一个种子URL实例化一个爬虫。

foreach($companyUrls as $companyId => $companyUrl) {
    $crawler = new MyCrawler($companyUrl, $companyId);
    $crawler->go();
}

第一次循环运行正常,但在完成任何爬网之前第二次抛出以下错误:

"Call to undefined method stdClass::receivePage() in
/data/utilities/PHPCrawl_070/classes/phpcrawler.class.php on line 201"

我没有以任何方式修改原始PHPCrawl V0.70类。我只扩展了PHPCrawler类并将处理代码添加到handlePageData()函数中,如PHPCrawl文档中所述。如果我在没有foreach循环的情况下运行它(使用新url一次实例化一个新类),系统工作正常。

请帮助!!

1 个答案:

答案 0 :(得分:0)

这是一个已知错误has been fixed in Version 0.71(我使用的是版本0.70)。

感谢@prodigitalson发表评论。