如何检查wget是否使用代理形成一个php页面

时间:2013-05-03 18:11:31

标签: php proxy wget

我正在使用这样的东西:

$proxyip = array("199.201.122.219:443","202.120.88.12:8080","84.27.84.170:80");

$urlb = 'http://www.google.it/?q=';
$outputfile = "dl.html";
putenv('proxy=on');

for ($j=4 ; $j<8 ; $j++){
    $url = $urlb . urlencode($row[$j][0]);
    putenv('http-proxy="'.$proxyip[rand(0,2)].'"');
    $cmd = "wget -q \"$url\" -O $outputfile";
    exec($cmd);
}

这一切都很好,但我确定wget正在使用代理吗? 是的,如果我查看env,则设置http-proxy。

0 个答案:

没有答案