curl_strerror
curl_strerror
Return string describing the given error code
**curl_strerror** int $error_code
Returns a text error message describing the given error code.
error_code
One of the constants.
cURL error codes
Returns error description or null for invalid error code.
Voorbeeld: example
<?php
// Create a curl handle with a misspelled protocol in URL
$ch = curl_init("htp://example.com/");
// Send request
curl_exec($ch);
// Check for errors and display the error message
if($errno = curl_errno($ch)) {
$error_message = curl_strerror($errno);
echo "cURL error ({$errno}):\n {$error_message}";
}
?>
cURL error (1):
Unsupported protocol
curl_errno``curl_errorCurl error codes