PHP.nl

curl_errno

curl_errno

Return the last error number

int **curl_errno** CurlHandle $handle

Returns the error number for the last cURL operation.

Returns the error number or (zero) if no error occurred. 0

Voorbeeld: example

<?php
// Create a curl handle to a non-existing location
$ch = curl_init('http://404.php.net/');

// Execute
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);

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

curl_errorCurl error codes