update : 2015.11.03
php.shukuma.com

검색:
 
 
Return the last error number

curl_errno

(PHP 4 >= 4.0.3, PHP 5, PHP 7)

curl_errnoReturn the last error number

설명

int curl_errno ( resource $ch )

Returns the error number for the last cURL operation.

인수

ch

curl_init()가 반환한 cURL 핸들입니다.

반환값

Returns the error number or 0 (zero) if no error occurred.

예제

Example #1 curl_errno() example

<?php
// Create a curl handle to a non-existing location
$ch curl_init('http://404.php.net/');

// Execute
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
curl_exec($ch);

// Check if any error occurred
if(curl_errno($ch))
{
    echo 
'Curl error: ' curl_error($ch);
}

// Close handle
curl_close($ch);
?>

참고