导航首页 » 技术教程 » PHP:curl_strerror()的用法_cURL函数
PHP:curl_strerror()的用法_cURL函数 132 2023-12-17   

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



!!!站长长期在线接!!!

网站、小程序:定制开发/二次开发/仿制开发等

各种疑难杂症解决/定制接口/定制采集等

站长微信:lxwl520520

站长QQ:1737366103