What is the default PHP cURL timeout value? Can I obtain the value from coding?
The defaults are as follows:
Previous answer (for reference):
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