curl_strerror

(PHP 5 >= 5.5.0, PHP 7)
Return string describing the given error code
string curl_strerror ( int $errornum )

Returns a text error message describing the given error code.

Parameters:
errornum

One of the » cURL error codes constants.

Returns:

Returns error description or NULL for invalid error code.

Examples:
curl_errno() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
// Create a curl handle with a mispelled 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}";
}
 
// Close the handle
curl_close($ch);
?>

The above example will output:

cURL error (1):
 Unsupported protocol
See also:

curl_errno() -

curl_error() -

» Curl error codes -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.