我的一个脚本中有下面的代码,但每次运行它都会使用我的 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);