欢迎访问服务器技术网-www.fuwuqijishu.com

PHP curl_version函数

PHP fuwuqijishu 2年前 (2022-09-04) 29次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP curl_version函数

PHP cURL参考手册

(PHP 5 >= 5.5.0)

curl_version — 获取cURL版本信息。


说明

array curl_version ([ int $age = CURLVERSION_NOW ] )

返回关于cURL的版本信息。


参数

age


返回值

返回一个相关的数组包含如下元素:

Indice 值描述
version_number cURL 24位版本号
version cURL 版本号,字符串形式
ssl_version_number OpenSSL 24 位版本号
ssl_version OpenSSL 版本号,字符串形式
libz_version zlib 版本号,字符串形式
host 关于编译cURL主机的信息
age  
features 一个CURL_VERSION_XXX常量的位掩码
protocols 一个cURL支持的协议名字的数组

实例

这个范例将会检查当前cURL版本使用curl_version()返回的’features’位掩码中哪些特性是可用的。

<?php
// 获取cURL版本数组
$version = curl_version();

// 在cURL编译版本中使用位域来检查某些特性
$bitfields = Array(
            'CURL_VERSION_IPV6', 
            'CURL_VERSION_KERBEROS4', 
            'CURL_VERSION_SSL', 
            'CURL_VERSION_LIBZ'
            );


foreach($bitfields as $feature)
{
    echo $feature . ($version['features'] & constant($feature) ? ' matches' : ' does not match');
    echo PHP_EOL;
}
?>

PHP cURL参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2213.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900