PHP curl_error函數(shù)
PHP curl_error函數(shù)
(PHP 4 >= 4.0.3, PHP 5)
curl_error — 返回一個保護當前會話最近一次錯誤的字符串
說明
string curl_error ( resource $ch )
返回一條最近一次cURL操作明確的文本的錯誤信息。
參數(shù)
ch
由 curl_init() 返回的 cURL 句柄。
返回值
返回錯誤信息或 '' (空字符串) 如果沒有任何錯誤發(fā)生。
實例
<?php // 創(chuàng)建一個指向一個不存在的位置的cURL句柄 $ch = curl_init('http://404.php.net/'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); if(curl_exec($ch) === false) { echo 'Curl error: ' . curl_error($ch); } else { echo '操作完成沒有任何錯誤'; } // 關閉句柄 curl_close($ch); ?>
參見
- curl_errno() - 返回最后一次的錯誤號
- ? Curl 錯誤代碼
相關文章
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 運算符
- PHP 多維數(shù)組
- PHP date() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP Filter 函數(shù)