simple_html_dom -

时间:2013-03-12 13:00:02

标签: php curl simple-html-dom

我使用CURL来抓取这个网址

$url = "http://www.juno.co.uk/all/today/?items_per_page=100&show_digital=0&show_tracks=0&show_covers=0";

$c = curl_init();
curl_setopt($c, CURLOPT_URL,"$url");
curl_setopt($c,CURLOPT_POST,true);
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 20); //give it adequate time
curl_setopt($c, CURLOPT_TIMEOUT, 50);
curl_setopt($c,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
curl_setopt($c, CURLOPT_RETURNTRANSFER,1);

if(!$complete = curl_exec($c))
    {
        echo "Failed to curl $url\n";
    }

然后我尝试使用

传递到简单的html dom
$home_page = str_get_html($complete);

这是抛出'PHP致命错误:在非对象上调用成员函数find()错误

foreach($home_page->find('tr.row2') as $home_details)
{
      //do stuff
    } 

当我将'items_per_page'参数更改为50时,它可以正常工作。上面的链接是有效的,当我回显$ complete时,它显示页面代码。

simple_html_dom在脚本的前面加载并正常工作。

我尝试过file_get_html而不是CURL和相同的结果

0 个答案:

没有答案