我写了一个通过php stream_socket_client检查ssl vertificates的类。
但是超时对某些网站不起作用。脚本有时会等待60秒以响应某些主机(似乎是一个php配置限制)。
这令人困惑,因为我将(连接)超时设置为2秒。对于ssl传输我没有看到任何其他限制我可以设置以减少最大连接时间/传输时间。我可以使用其他任何时间限制吗?
$options = array(
"ssl" => array(
"capture_peer_cert" => true,
"capture_peer_chain" => true,
"capture_peer_cert_chain" => true,
"verify_peer" => $verify_peer,
"allow_self_signed" => $allow_self_signed )
);
if (strlen($this->cafile) > 0) {
$options['ssl']['cafile'] = $this->cafile;
if (strlen($this->capath) > 0 && [..]) {
$options['ssl']['capath'] = $this->capath;
}
} else {
$options['verify_peer'] = false;
}
$get = @stream_context_create( $options);
$read = @stream_socket_client("ssl://$host:443", $errno, $errstr, 2, STREAM_CLIENT_CONNECT, $get);
if($read){
stream_set_timeout($read, 2);
$cert = stream_context_get_params($read);
} else {
$cert = false;
}
答案 0 :(得分:-1)
检查http://php.net/manual/en/function.stream-set-timeout.php的Dianoga(dianoga7 [at] 3dgo.net)回复。