PHP curl_multi_strerror函數(shù)
PHP curl_multi_strerror函數(shù)
(PHP 5 >= 5.5.0)
curl_multi_setopt — 返回描述錯誤碼的字符串文本。
說明
string curl_multi_strerror ( int $errornum )
返回描述 CURLM 錯誤碼的字符串文本。
參數(shù)
errornum
CURLM 錯誤代碼 中的常量之一。
返回值
返回描述錯誤碼的字符串文本, 否則返回 NULL。
實例
實例
<?php
// 創(chuàng)建 cURL 句柄
$ch1 = curl_init("https://www.runoob.com/");
$ch2 = curl_init("http://php.net/");
// 創(chuàng)建一個批處理cURL句柄
$mh = curl_multi_init();
// 添加句柄到批處理句柄
curl_multi_add_handle($mh, $ch1);
curl_multi_add_handle($mh, $ch2);
// 執(zhí)行批處理句柄
do {
$status = curl_multi_exec($mh, $active);
// 檢查錯誤
if($status > 0) {
// 顯示錯誤信息
echo "ERROR!\n " . curl_multi_strerror($status);
}
} while ($status === CURLM_CALL_MULTI_PERFORM || $active);
?>
相關文章
- PHP EOF(heredoc) 使用說明
- PHP 運算符
- PHP 文件處理
- PHP Cookie
- PHP 異常處理
- PHP array_filter() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP current() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP HTTP 函數(shù)
- PHP Mail 函數(shù)