PHP curl_version函數(shù)
PHP curl_version函數(shù)
(PHP 5 >= 5.5.0)
curl_version — 獲取cURL版本信息。
說(shuō)明
array curl_version ([ int $age = CURLVERSION_NOW ] )
返回關(guān)于cURL的版本信息。
參數(shù)
age
返回值
返回一個(gè)相關(guān)的數(shù)組包含如下元素:
Indice | 值描述 |
---|---|
version_number | cURL 24位版本號(hào) |
version | cURL 版本號(hào),字符串形式 |
ssl_version_number | OpenSSL 24 位版本號(hào) |
ssl_version | OpenSSL 版本號(hào),字符串形式 |
libz_version | zlib 版本號(hào),字符串形式 |
host | 關(guān)于編譯cURL主機(jī)的信息 |
age | |
features | 一個(gè)CURL_VERSION_XXX常量的位掩碼 |
protocols | 一個(gè)cURL支持的協(xié)議名字的數(shù)組 |
實(shí)例
這個(gè)范例將會(huì)檢查當(dāng)前cURL版本使用curl_version()返回的'features'位掩碼中哪些特性是可用的。
<?php // 獲取cURL版本數(shù)組 $version = curl_version(); // 在cURL編譯版本中使用位域來(lái)檢查某些特性 $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; } ?>
相關(guān)文章
- PHP 字符串
- PHP Switch 語(yǔ)句
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP count() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)