gpt4 book ai didi

php - CURLOPT_NOPROXY 不影响 PHP

转载 作者:可可西里 更新时间:2023-11-01 13:50:26 25 4
gpt4 key购买 nike

我在我的 Ubuntu 机器上的/etc/environment 中有 http_proxy 设置。我已将 CURLOPT_NOPROXY 定义为 10177 然后执行

$curl = curl_init('http://127.0.0.1:4444/wd/hub');
curl_setopt($curl, CURLOPT_NOPROXY, '127.0.0.1'); // or '*'
// ... set others params and options ...
curl_exec($curl);

但这不会影响我的脚本,我收到代理错误消息而不是 WebDriver 响应。同时从命令行使用 curl --noproxy 127.0.0.1 http://127.0.0.1:4444/wd/hub 效果很好。

额外的环境信息:

curl --version
curl 7.22.0 (x86_64-pc-linux-gnu)
libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4
libidn/1.23 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtmp rtsp smtp smtps telnet tftp
Features: GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP

PHP 版本为 5.3.10。

如何从我的 PHP 脚本中设置 noproxy 选项?

更新: 看起来它应该可以工作 https://bugs.php.net/bug.php?id=53543在 PHP 中。

最佳答案

这件事发生在我身上,所以我将代理设置为空字符串并且它有效

curl_setopt($ch, CURLOPT_PROXY, '');

关于php - CURLOPT_NOPROXY 不影响 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18653805/

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