Dutch PHP Conference 2025 - Call For Papers

curl_strerror

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

curl_strerrorReturn string describing the given error code

Опис

curl_strerror(int $error_code): ?string

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.

Приклади

Приклад #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);
?>

Поданий вище приклад виведе:

cURL error (1):
 Unsupported protocol

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top