Query: curl_strerror
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CURL_STRERROR(3) 1 CURL_STRERROR(3) curl_strerror - Return string describing the given error codeSYNOPSISstring curl_strerror (int $errornum)DESCRIPTIONReturns a text error message describing the given error code.PARAMETERSo $errornum - One of the cURL error codes constants.RETURN VALUESReturns error description or NULL for invalid error code.EXAMPLESExample #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 protocolSEE ALSOcurl_errno(3), curl_error(3), Curl error codes. PHP Documentation Group CURL_STRERROR(3)
Related Man Pages |
---|
curl_setopt_array(3) - php |
curl_share_setopt(3) - php |
curl_file_create(3) - php |
curl_share_close(3) - php |
curl_version(3) - php |
Similar Topics in the Unix Linux Community |
---|
Rules for Homework & Coursework Questions Forum |
Forum Video Tutorial: How to Use Code Tags |
UNIX.COM 2017 Year End Summary |
Status of UNIX.COM Forum Transformation |