php使用curl抓取一个网站的内容被拒绝

http://www.sgs.gov.cn/lz/etpsInfo.do?method=index这个网站输入上海科波勒之后查询后可以得到点击查看详情后他发送了一个pos... http://www.sgs.gov.cn/lz/etpsInfo.do?method=index这个网站
输入上海科波勒之后查询后可以得到

点击查看详情后他发送了一个post到http://www.sgs.gov.cn/lz/etpsInfo.do?method=viewDetail$etpsId = 290000032004051700672用curl总是返回非法的访问方式,我设置了refer,设置了setcookie都还是不成。哪位大神能解决吗
就是从第一个输入关键字,查询,之后点击“详细信息”。我要curl的就是下面的内容

这个url是通过给http://www.sgs.gov.cn/lz/etpsInfo.do?method=viewDetail
post一个内容的etpsId = 290000032004051700672
展开
 我来答
li361111523
2014-01-23 · TA获得超过229个赞
知道小有建树答主
回答量:145
采纳率:100%
帮助的人:108万
展开全部

刚写的。希望有用

<?php 
$binfo =array('Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; AskTbPTV/5.17.0.25589; Alexa Toolbar)','Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; Alexa Toolbar)','Mozilla/4.0(compatible; MSIE 6.0; Windows NT 5.1; SV1)',$_SERVER['HTTP_USER_AGENT']);
//218.242.124.16*
//125.90.88.*
$cip = '218.242.124.'.mt_rand(0,254);
$xip = '218.242.124.'.mt_rand(0,254);
$header = array( 
'CLIENT-IP:'.$cip, 
'X-FORWARDED-FOR:'.$xip, 
);
function getimgs( $url,$data,$userinfo,$header)
{
 $ch = curl_init();
 $timeout = 5;
 curl_setopt ($ch, CURLOPT_URL, "$url");
 curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
 curl_setopt ($ch, CURLOPT_REFERER, "http://www.sgs.gov.cn/lz/etpsInfo.do?method=index"); 
 curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
 curl_setopt ($ch, CURLOPT_USERAGENT, "$userinfo");
 curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
 $contents = curl_exec($ch);
 curl_close($ch);
 return $contents;
}

$url ='http://www.sgs.gov.cn/lz/etpsInfo.do?method=doSearch';
$u = $binfo[mt_rand(0,3)];
$data = array(
    'keyWords'=>'上海科波',
    'searchType'=>'1'
);

$html = (getimgs($url,$data,$u,$header));
//替换链接地址
$html = str_replace('href="#"', 'href="http://www.sgs.gov.cn/lz/etpsInfo.do?method=doSearch#"', $html);

echo $html;


?>
追问
你这个我也已经写出来了,我说的是下一步,点击详细信息之后的,如果写出能用,追加分数
百度网友2d2b2a6
2014-01-23 · TA获得超过293个赞
知道小有建树答主
回答量:594
采纳率:66%
帮助的人:224万
展开全部
首先,他可能根据你的ip、agent等信息做了判断;
其次,但是却是最重要的一点,这是gov.cn的域名,建议你好好学习我国信息安全法规。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
春哥521
2014-01-23
知道答主
回答量:22
采纳率:0%
帮助的人:4.8万
展开全部
你在说的具体点
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式