«

PHP:curl_strerror()的用法

时间:2024-3-1 21:52     作者:韩俊     分类: PHP


curl_strerror

(PHP 5 >= 5.5.0)

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.

范例

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_errno() - 返回最后一次的错误号 curl_error() - 返回一个保护当前会话最近一次错误的字符串 » Curl error codes

标签: php php教程

热门推荐