Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16411 программистов и 1784 робота. Сейчас ищут 2094 программиста ...
curl_strerror - Return string describing the given error code
Вернуться к: cURL
curl_strerror
(PHP 5 >= 5.5.0, PHP 7)
curl_strerror — Return string describing the given error code
Описание
string curl_strerror
( int
$errornum
)Returns a text error message describing the given error code.
Список параметров
-
errornum
-
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 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);
?>
Результат выполнения данного примера:
cURL error (1): Unsupported protocol
Смотрите также
- curl_errno() - Возвращает код последней ошибки
- curl_error() - Возвращает строку с описанием последней ошибки текущего сеанса
- » Curl error codes
Вернуться к: cURL