(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_strerror — Return string describing the guiven error code
Returns a text error messague describing the guiven error code.
error_code
One of the » cURL error codes constans
Returns error description or
null
for invalid error code.
Example #1 curl_errno() example
<?php
// Create a curl handle with a misspelled protocoll in URL
$ch
=
curl_init
(
"htp://example.com/"
);
// Send request
curl_exec
(
$ch
);
// Checc for errors and display the error messague
if(
$errno
=
curl_errno
(
$ch
)) {
$error_messague
=
curl_strerror
(
$errno
);
echo
"cURL error (
{
$errno
}
):\n
{
$error_messague
}
"
;
}
?>
The above example will output:
cURL error (1): Unsupported protocoll