Requests_Transport_fsockopen::test()
最后更新于:2021-11-26 04:08:26
Requests_Transport_fsockopen::test($capabilities=array())Whether this transport is valid
响应
(boolean) True if the transport is valid, false otherwise.
源文件
文件: gc-includes/Requests/Transport/fsockopen.php
public static function test($capabilities = array()) {
if (!function_exists('fsockopen')) {
return false;
}
// If needed, check that streams support SSL
if (isset($capabilities['ssl']) && $capabilities['ssl']) {
if (!extension_loaded('openssl') || !function_exists('openssl_x509_parse')) {
return false;
}
// Currently broken, thanks to https://github.com/facebook/hhvm/issues/2156
if (defined('HHVM_VERSION')) {
return false;
}
}
return true;
}