jQuery Select下拉框操作小结(推荐)
312
2024-02-24
(PHP 5 >= 5.5.0)
curl_strerror — Return string describing the given error code
$errornum
)
Returns a text error message describing the given error code.
errornum
One of the » cURL error codes constants.
Returns error description or NULL
for invalid error code.
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);
?>
以上例程会输出:
cURL error (1): Unsupported protocol
curl_errno() - 返回最后一次的错误号 curl_error() - 返回一个保护当前会话最近一次错误的字符串 » Curl error codes
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!