morteza kavakebi
morteza kavakebi

Reputation: 1680

PHP curl timeout error detection

I use curl to perform a HTTP request like this:

$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);

$data = curl_exec($ch);
curl_close($ch);

How can I check if an error occurred, and whether it was a timeout error?

Upvotes: 42

Views: 62530

Answers (2)

user7744547
user7744547

Reputation:

you can check error number and its' description like this:

// Check if any error occurred
if(curl_errno($ch))
{
    echo 'Curl error: ' . curl_error($ch);
}

Upvotes: 4

Jason McCreary
Jason McCreary

Reputation: 73031

Use curl_errno()

Code 28 is timeout.

Upvotes: 55

Related Questions