0

我的一个脚本中有下面的代码,但每次运行它都会使用我的 IP 地址。我怎样才能让它使用用户的IP地址?我正在阅读有关curl_setopt()允许您设置 IP 地址的信息。有人可以帮助我吗?

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, '' . $stuff_link[0] . '');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, '' . $stuff_refurl . '');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
// curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
$html = curl_exec($ch);
curl_close ($ch);
4

2 回答 2

1

简短的回答是:你不能那样做。

于 2013-01-24T22:03:23.913 回答
0

这是 - 幸运的是 - 不可能的。

事实上,如果您的用户安装了http 代理服务器,您可以...

于 2013-01-24T22:06:26.133 回答