curl_strerror

(PHP 5 >= 5.5.0, PHP 7)

curl_strerror���ش��������ַ�������

˵��

curl_strerror ( int $errornum ) : string

�����ı�������Ϣ��������ָ���Ĵ�����롣

����

errornum

» cURL ��������еij���֮һ��

����ֵ

���ش�����Ϣ��������Ч�Ĵ�����뷵�� NULL ��

����

Example #1 curl_errno() �����ķ�����

<?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);
?>

�������̻������

cURL error (1):
 Unsupported protocol

�μ�