curl https SITE with proxy

时间:2015-10-07 12:53:41

标签: php curl https proxy

我想使用代理来修改https SITE,但我失败了。

curl -x IP:PROT 'https://SITE'

它返回:

curl: (56) Proxy CONNECT aborted  

有没有满足我的需要?
THX

P.S:我也在使用PHP(curl),我想用PHP做这件事。

这是我的代码:

$ip = "IP:PORT";
$url = "https://SITE";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_PROXY, $ip);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
var_dump($output);

0 个答案:

没有答案