What is the default PHP cURL timeout value ? Can I obtain the value from coding ?
|
|
|
My understanding is that CURL obeys the default_socket_timeout unless overriden with
|
|||
|
|
It depends on which timeout setting you're talking about. cURL offers various options specific to connection timeout settings. Some of these options have a set limit, while others allow transfers to take an indefinite amount of time. In order to understand which values have default settings and which do not, you need to look at libcurl's libcurl lists the following connection timeout specific settings:
The PHP source code does override any of the above default settings: https://github.com/php/php-src/blob/master/ext/curl/interface.c. The only somewhat related parameter that the PHP bindings override is One of the other answers stated that PHP will set |
|||
|
|
|
None in libcurl. http://curl.haxx.se/mail/lib-2003-05/0097.html |
|||||
|
|
|
It may be easier to specify this value directly in the script?
|
|||||||
|