1299 | | // Use _MS if available. |
1300 | | if ( defined( 'CURLOPT_TIMEOUT_MS' ) ) { |
1301 | | $timeout_ms = (int) ceil( 1000 * $r['timeout'] ); |
1302 | | curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT_MS, $timeout_ms ); |
1303 | | curl_setopt( $handle, CURLOPT_TIMEOUT_MS, $timeout_ms ); |
1304 | | } else { |
1305 | | $timeout = (int) ceil( $r['timeout'] ); |
1306 | | curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, $timeout ); |
1307 | | curl_setopt( $handle, CURLOPT_TIMEOUT, $timeout ); |
1308 | | } |
| 1299 | $timeout = (int) ceil( $r['timeout'] ); |
| 1300 | curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, $timeout ); |
| 1301 | curl_setopt( $handle, CURLOPT_TIMEOUT, $timeout ); |