在线文档教程
PHP
事件 | Event

EventSslContext::__construct

EventSslContext::__construct

(PECL event >= 1.2.6-beta)

EventSslContext :: __ construct - 构造用于Event类的OpenSSL上下文

描述

public EventSslContext::__construct ( string $method , string $options )

创建指向SSL_CTX的 SSL上下文指针(请参阅系统手册)。

参数

method

一个 EventSslContext :: * _方法常量。

options

SSL上下文选项的关联数组 EventSslContext :: OPT_ *常量之一。

返回值

返回EventSslContext对象。

例子

示例#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, ) ?>

← EventSslContext

EventUtil →