= 4.0.3, PHP 5, PHP 7, PHP 8)curl_errno — 返回最后一次的錯誤代碼說明curl_errno(resource $ch): int返回最后一次 cURL 操作的錯誤代碼。 參數(shù)handle 由 curl_init() 返回的 ">
(PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8)
curl_errno — 返回最后一次的錯誤代碼
$ch
): int返回最后一次 cURL 操作的錯誤代碼。
返回錯誤代碼或在沒有錯誤發(fā)生時返回 0
(零)。
示例 #1 curl_errno() 例子
<?php
// 創(chuàng)建 cURL 句柄,指向不存在的位置
$ch = curl_init('http://404.php.net/');
// 執(zhí)行
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
// 檢查是否有錯誤發(fā)生
if(curl_errno($ch))
{
echo 'Curl error: ' . curl_error($ch);
}
// 關(guān)閉句柄
curl_close($ch);
?>