gpt4 book ai didi

php - 为 curl 请求选择传出 IP

转载 作者:IT王子 更新时间:2023-10-29 01:01:55 26 4
gpt4 key购买 nike

我的服务器有两个不同的 IP。我需要从第一个 IP 甚至从第二个 IP 发送奇怪的 curl 请求。如何选择传出 IP 地址?

我的 PHP 脚本是这样的:

$curlh = curl_init($url);
curl_setopt($curlh, CURLOPT_USERAGENT, $uagent);
curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($curlh);

我该怎么做?

最佳答案

您可能想尝试设置 CURLOPT_INTERFACE 选项:

curl_setopt($curlh, CURLOPT_INTERFACE, "xxx.xxx.xxx.xxx");

CURLOPT_INTERFACE: The name of the outgoing network interface to use. This can be an interface name, an IP address or a host name.

发件人:php Manual: curl_setopt


编辑: 修复示例,如 @Michael Hart pointed out在另一个答案中指出。

关于php - 为 curl 请求选择传出 IP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2425651/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com