- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP curl_strerror函数
(PHP 5 >= 5.5.0)
curl_strerror — 返回错误码的描述。
说明
string curl_strerror ( int $errornum )
返回错误码的文本描述信息。
参数
errornum
一个 » cURL 错误码的常量。
返回值
返回错误码描述信息,非法错误码返回NULL 。
实例
<?php // 创建一个拼写错误的URL的cURL句柄 $ch = curl_init("htp://example.com/"); // 发送请求 curl_exec($ch); // 检查错误代码并显示错误信息 if($errno = curl_errno($ch)) { $error_message = curl_strerror($errno); echo "cURL error ({$errno}):\n {$error_message}"; } // 关闭句柄 curl_close($ch); ?>
以上例程会输出:
cURL error (1): Unsupported protocol
关注微信小程序
扫描二维码
程序员编程王