Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the default PHP cURL timeout value ? Can I obtain the value from coding ?

share|improve this question

4 Answers

up vote 9 down vote accepted

My understanding is that CURL obeys the default_socket_timeout unless overriden with CURLOPT_TIMEOUT/CURLOPT_CONNECTTIMEOUT.

$socket_timeout = ini_get('default_socket_timeout'); // timeout in seconds
share|improve this answer
Can you back this up? I couldn't find anything to prove this in the PHP curl bindings (github.com/php/php-src/blob/master/ext/curl/interface.c). I also tried setting my default_socket_timeout ini setting to 1 and downloaded a large file, but curl never timed out-- implying that the default value of 0 (indefinite) was still being used. I then explicitly set a CURLOPT_TIMEOUT value of one second on a curl handle, tried the to download the same file, and I noticed that the connection was definitely cut short after 1 second. – Michael Dowling Apr 12 at 23:21

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 curl_easy_setopt() function: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html

libcurl lists the following connection timeout specific settings:

  • CURLOPT_FTP_RESPONSE_TIMEOUT: No default (indefinite)
  • CURLOPT_TIMEOUT: No default (indefinite)
  • CURLOPT_TIMEOUT_MS: No default (indefinite)
  • CURLOPT_CONNECTTIMEOUT: Defaults to 300 seconds
  • CURLOPT_CONNECTTIMEOUT_MS: No default
  • CURLOPT_ACCEPTTIMEOUT_MS: Defaults to 60000 ms

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 CURLOPT_DNS_CACHE_TIMEOUT, changing the default value from 60 seconds to 120 seconds: https://github.com/php/php-src/blob/a0e3ca1c986681d0136ce4550359ecee2826a80c/ext/curl/interface.c#L1926

One of the other answers stated that PHP will set CURLOPT_TIMEOUT to the value specified in the default_socket_timeout ini setting. I was not able to find anything in the PHP source code to back up this claim, and I was unable to trigger a cURL timeout by downloading a very large file with a default_socket_timeout setting of 1 second.

share|improve this answer

None in libcurl. http://curl.haxx.se/mail/lib-2003-05/0097.html

share|improve this answer
Thanks for the finding. Any authoritative answer? – Shivan Raptor Apr 25 '12 at 7:46
A little more detail... curl.haxx.se/mail/lib-2001-01/0019.html – Halil Özgür Mar 2 at 14:19

It may be easier to specify this value directly in the script?

curl_setopt($curl_handler, CURLOPT_TIMEOUT, 30); // 30 seconds
share|improve this answer
I know how to set it to a value, but I want to know the default value. – Shivan Raptor Apr 25 '12 at 3:43
May be phpinfo(); ? – Roman Nazarkin Apr 25 '12 at 3:49
phpinfo(); does NOT include the value, sorry. – Shivan Raptor Apr 25 '12 at 3:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.