我在debian7上安装了squid proxy soft,然后启动服务。 每个人都可以利用鱿鱼服务,没有任何限制。 添加了用户和通行证。
/usr/bin/htpasswd -c /etc/squid/passwd testuser
New password: pass
vps也可以与pass
连接。
ssh root@vps_ip
现在我想以vps_ip作为我的代理获取网页http://www.google.com
。
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'http://www.google.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, 'vps_ip:8080');
curl_setopt($ch, CURLOPT_PROXYUSERPWD,'testuser:pass');
$output = curl_exec($ch);
echo $output;
curl_close ($ch);
?>
为什么我的firefox中没有输出何时执行代码?