curl_strerror
curl_strerror
(PHP 5 >= 5.5.0, PHP 7)
curl_strerror - 返回描述给定错误代码的字符串
描述
string curl_strerror ( int $errornum )
返回描述给定错误代码的文本错误消息。
参数
errornum
其中的»卷曲的错误代码常数。
返回值
返回错误描述或NULL
无效的错误代码。
例子
Example #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_share_strerror
curl_unescape →