curl_strerror(3) php man page | unix.com

Man Page: curl_strerror

Operating Environment: php

Section: 3

CURL_STRERROR(3)							 1							  CURL_STRERROR(3)

curl_strerror - Return string describing the given error code

SYNOPSIS
string curl_strerror (int $errornum)
DESCRIPTION
Returns a text error message describing the given error code.
PARAMETERS
o $errornum - One of the cURL error codes constants.
RETURN VALUES
Returns error description or NULL for invalid error code.
EXAMPLES
Example #1 curl_errno(3) 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}): {$error_message}"; } // Close the handle curl_close($ch); ?> The above example will output: cURL error (1): Unsupported protocol
SEE ALSO
curl_errno(3), curl_error(3), Curl error codes. PHP Documentation Group CURL_STRERROR(3)
Related Man Pages
curl_setopt_array(3) - php
curl_init(3) - php
curl_reset(3) - php
curl_escape(3) - php
curl_multi_strerror(3) - php
Similar Topics in the Unix Linux Community
Please Welcome Don Cragun as Lead Moderator
Status of UNIX.COM Forum Transformation
Please Welcome Ravinder Singh to the Moderation Team
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Wolf Machowitsch