我使用PHP curl库建立连接并从WEB检索内容 - 通常。
我在10300到10350的端口上运行localhost上的多个SOCKS5代理服务器,PHP随机选择一个端口。
我的代码:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PROXY, "localhost:".mt_rand(10300, 10350));
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$curl_resp = curl_exec($ch);
curl_close($ch);
/// ... whatever logic
但是如果我将这段代码长时间放入循环中,我会收到错误消息,告知不能打开更多文件。我在网上看到的是因为达到了文件处理程序限制,所以我使用lsof -p
进行了调试,我注意到这个过程有数百甚至数千行:
... TCP localhost:43030->localhost:10303 (CLOSE_WAIT)
... TCP localhost:40982->localhost:10341 (CLOSE_WAIT)
... TCP localhost:48718->localhost:10304 (CLOSE_WAIT)
... TCP localhost:41655->localhost:10350 (CLOSE_WAIT)
... TCP localhost:41915->localhost:10310 (CLOSE_WAIT)
... TCP localhost:49746->localhost:10322 (ESTABLISHED)
我正在研究为什么会这样,但我不明白,因为我打电话给curl_close
我会认为CURL会关闭PROXY连接,或者我错过了什么?< / p>
版本:
PHP 7.1.4-1+deb.sury.org~trusty+1 (cli) (built: Apr 11 2017 22:45:20) (NTS)
curl 7.52.1 (x86_64-pc-linux-gnu) libcurl/7.52.1 OpenSSL/1.0.1f zlib/1.2.8 libidn2/0.9 libpsl/0.11.0 (+libicu/52.1) libssh2/1.4.3 nghttp2/1.19.0 librtmp/2.3
答案 0 :(得分:0)
我也遇到过这个问题。解决方法是添加
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Connection: close"));
起初我以为是与php7有关,因为我可以在php7盒子上重现它,但在php5上,它不会发生。不幸的是,我在另一个php7盒子上试过这个,它也没有再发生过。所以我仍然对根本原因感到困惑。