(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_strerror — Return string describing the given error code
Returns a text error message describing the given error code.
error_code
One of the » cURL error codes constants.
Returns error description or null
for invalid error code.
Example #1 curl_errno() 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}";
}
/ Close the handle
curl_close($ch);
?>
The above example will output:
cURL error (1): Unsupported protocol
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant