PHP使用Curl访问被审查的网站

时间:2019-06-26 12:29:23

标签: php curl proxy

我想使用curl访问经过审查的网站,我设置了代理并对其进行了测试。有用。但这不是进入经过审查的网站。

它正在进入https网站。

curl_setopt($ch, CURLOPT_PROXY, '192.241.129.11');
curl_setopt($ch, CURLOPT_PROXYPORT, '8118');
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');


$url = 'https://www.wikipedia.com';
//$url = 'https://www.google.com';


curl_setopt($ch, CURLOPT_URL, $url);

$data = curl_exec($ch);

echo $data;

1 个答案:

答案 0 :(得分:0)

wikipedia.com专门阻止没有User-Agent的请求,请解决该问题。

curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (compatible; Santa1923/bot)");