curl的timeout 崩溃问题
程序员文章站
2022-07-13 10:59:12
...
最近供一个服务用到了curl,发现一件奇怪的事。
curl的超时如果设置<1000ms的话有可能会返回失效甚至崩溃...
到网上查了一下原因:
CURLOPT_TIMEOUT_MS
The maximum number of milliseconds to allow cURL functions to execute. If libcurl is built to use the standard system name resolver, that portion of the connect will still use full-second resolution for timeouts with a minimum timeout allowed of one second.
官方文档上说curl的超时只支持秒级,因为curl底层的select()调用超时位1000ms。
如果要完成毫秒级的超时,可以使用curl_multi_select()。或者修改原代码。可以参见一个同行的连接:
http://hi.baidu.com/tarotme/blog/item/07bdaefb6921c4284f4aeaec.html
curl的超时如果设置<1000ms的话有可能会返回失效甚至崩溃...
到网上查了一下原因:
CURLOPT_TIMEOUT_MS
The maximum number of milliseconds to allow cURL functions to execute. If libcurl is built to use the standard system name resolver, that portion of the connect will still use full-second resolution for timeouts with a minimum timeout allowed of one second.
官方文档上说curl的超时只支持秒级,因为curl底层的select()调用超时位1000ms。
如果要完成毫秒级的超时,可以使用curl_multi_select()。或者修改原代码。可以参见一个同行的连接:
http://hi.baidu.com/tarotme/blog/item/07bdaefb6921c4284f4aeaec.html
推荐阅读
-
win7 wamp 64位 php环境开启curl服务遇到的问题及解决方法
-
解决iOS7上UITextField限制字数输入导致崩溃问题的方法
-
php curl post 时出现的问题解决
-
关于PHP的curl开启问题探讨
-
IE浏览器登录网上银行时出现崩溃问题的解决办法
-
win7 wamp 64位 php环境开启curl服务遇到的问题及解决方法
-
如何解决开机总出现press K to start backup or restore system.timeout的问题
-
解决iOS7上UITextField限制字数输入导致崩溃问题的方法
-
使用nginx代理gogs遇到推送代码错误的问题(RPC failed; HTTP 413 curl 22 The requested URL returned error: 413)
-
win2003下PHP使用preg_match_all导致apache崩溃问题的解决方法