我有一个分配了不同IP的服务器,如何指定cURL使用的不同IP?
您必须使用
原文链接:https://www.f2er.com/php/130581.htmlCURLOPT_INTERFACE
选项:
The name of the outgoing network
interface to use. This can be an
interface name,an IP address or a
host name.
它可以按以下方式使用:
curl_setopt($ch,CURLOPT_INTERFACE,“XXX.XXX.XXX.XXX”);
这个当然只接受本地机器的IP和主机名.