- 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_multi_strerror函数
(PHP 5 >= 5.5.0)
curl_multi_setopt — 返回描述错误码的字符串文本。
说明
string curl_multi_strerror ( int $errornum )
返回描述 CURLM 错误码的字符串文本。
参数
errornum
一个» CURLM error codes错误码常量。
返回值
返回描述错误码的字符串文本, 否则返回 NULL。
实例
<?php // 创建 cURL 句柄 $ch1 = curl_init("http://www.zyiz.net/"); $ch2 = curl_init("http://php.net/"); // 创建一个批处理cURL句柄 $mh = curl_multi_init(); // 添加句柄到批处理句柄 curl_multi_add_handle($mh, $ch1); curl_multi_add_handle($mh, $ch2); // 执行批处理句柄 do { $status = curl_multi_exec($mh, $active); // 检查错误 if($status > 0) { // 显示错误信息 echo "ERROR!\n " . curl_multi_strerror($status); } } while ($status === CURLM_CALL_MULTI_PERFORM || $active); ?>
关注微信小程序
扫描二维码
程序员编程王