WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Mobile Dev World
Return the last error number

curl_errno

(PHP 4 >= 4.0.3, PHP 5)

curl_errnoReturn the last error number

Description

int curl_errno ( resource $ch )

Returns the error number for the last cURL operation.

Parameters

ch

A cURL handle returned by curl_init().

Return Values

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

Examples

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 occured
if(curl_errno($ch))
{
    echo 
'Curl error: ' curl_error($ch);
}

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

See Also


Sign-in To Amazon.com with PHP CURL
Categories : PHP, CURL
Using cURL to get login to yahoo.com by Porosh
Categories : PHP, CURL
Sample AIM (Advanced Integration Method) PHP Script For Authorize.net using CURL
Categories : CURL, Ecommerce, PHP



Using cURL to download a file programmatically.
Categories : PHP, PHP Extensions, CURL
Open remote https url using Curl and accept cookie
Categories : PHP, CURL
CURL PHP (Screen Scraping) - How to get the content from external web sites using CURL (HTTP or HTTPS).
Categories : PHP, CURL
A PHP function to make simple POST (and also GET) requests without using the CURL extension.
Categories : PHP, HTTP