网站URL未加载Curl php

时间:2016-03-31 06:44:33

标签: php curl ip

我正在使用Curl PHP从远程站点获取数据。我的剧本是:

<?php

$url = 'https://www.(url).com/';

$sleep = rand(10, 12);

sleep($sleep);

$agent= 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36';

$ch = curl_init();

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_VERBOSE, true);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_HTTPHEADER, array('accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8','accept-encoding:gzip, deflate, sdch','accept:image/webp,image/*,*/*;q=0.8'));

curl_setopt($ch, CURLOPT_PROXY, "x.x.x.x:x");

curl_setopt($ch, CURLOPT_USERAGENT, $agent);

curl_setopt($ch, CURLOPT_URL,$url);

$result=curl_exec($ch);

$mainPage = new simple_html_dom;

echo $mainPage->load($result);

但它在响应中返回403 forbidden错误。

我尝试使用高级用户代理,但我仍然收到此错误。

提前感谢您的建议和意见。

0 个答案:

没有答案