= 4.0.2, PHP 5, PHP 7, PHP 8)curl_version — 獲取 cURL 版本信息說明curl_version(int $age = CURLVERSION_NOW): array返回關(guān)于 cURL 版本的信息。 參數(shù)age返回值">
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
curl_version — 獲取 cURL 版本信息
$age
= CURLVERSION_NOW): array返回關(guān)于 cURL 版本的信息。
age
返回關(guān)聯(lián)數(shù)組,包含如下元素:
鍵 | 值描述 |
---|---|
version_number | cURL 24 位版本號 |
version | cURL 版本號,字符串形式 |
ssl_version_number | OpenSSL 24 位版本號 |
ssl_version | OpenSSL 版本號,字符串形式 |
libz_version | zlib 版本號,字符串形式 |
host | 關(guān)于編譯cURL主機(jī)的信息 |
age | |
features | 一個CURL_VERSION_XXX 常量的位掩碼 |
protocols | 數(shù)組,包含 cURL 支持的協(xié)議名稱 |
示例 #1 curl_version() 例子
這個范例將會檢查當(dāng)前 cURL 版本使用curl_version()返回的 'features' 位掩碼中哪些特性是可用的。
<?php
// 獲取cURL版本數(shù)組
$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;
}
?>