array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.curl-errno.php', 1 => 'curl_errno', 2 => 'Return the last error number', ), 'up' => array ( 0 => 'ref.curl.php', 1 => 'Функції cURL', ), 'prev' => array ( 0 => 'function.curl-copy-handle.php', 1 => 'curl_copy_handle', ), 'next' => array ( 0 => 'function.curl-error.php', 1 => 'curl_error', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/curl/functions/curl-errno.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8)
curl_errno — Return the last error number
Returns the error number or 0 (zero) if no error
occurred.
| Версія | Опис |
|---|---|
| 8.0.0 |
handle тепер має бути примірником класу
CurlHandle; раніше очікувався resource.
|
Приклад #1 curl_errno() example
<?php
// Create a curl handle to a non-existing location
$ch = curl_init('http://404.php.net/');
// Execute
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
// Check if any error occurred
if(curl_errno($ch))
{
echo 'Curl error: ' . curl_error($ch);
}
?>