(PECL event >= 1.2.6-beta)
EventSslContext::__construct — 构造一个用于 Event 类的 OpenSSL 上下文
创建包含指向 SSL_CTX
的指针的 SSL 上下文(请参阅系统手册)。
method
options
SSL 上下文选项的关联数组 EventSslContext::OPT_*
常量 之一。
示例 #1 EventSslContext::__construct() 示例
<?php
$ctx = new EventSslContext(EventSslContext::SSLv3_SERVER_METHOD, array(
EventSslContext::OPT_LOCAL_CERT => $local_cert,
EventSslContext::OPT_LOCAL_PK => $local_pk,
EventSslContext::OPT_PASSPHRASE => "echo server",
EventSslContext::OPT_VERIFY_PEER => true,
EventSslContext::OPT_ALLOW_SELF_SIGNED => false,
));
?>