dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

curl_unescape> <curl_share_setopt
[edit] Last updated: Fri, 28 Jun 2013

view this page in

curl_strerror

(PHP 5 >= 5.5.0)

curl_strerrorReturn string describing the given error code

Description

string curl_strerror ( int $errornum )

Returns a text error message describing the given error code.

Parameters

errornum

One of the » cURL error codes constants.

Return Values

Returns error description or NULL for invalid error code.

Examples

Example #1 curl_errno() example

<?php
// Create a curl handle with a mispelled protocol in URL
$ch curl_init("htp://example.com/");

// Send request
curl_exec($ch);

// Check for errors and display the error message
if($errno curl_errno($ch)) {
    
$error_message curl_strerror($errno);
    echo 
"cURL error ({$errno}):\n {$error_message}";
}

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

The above example will output:

cURL error (1):
 Unsupported protocol

See Also



add a note add a note User Contributed Notes curl_strerror - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites