PHP Conference Japan 2024

EventSslContext::__construct

(PECL event >= 1.2.6-beta)

EventSslContext::__construct构造一个用于 Event 类的 OpenSSL 上下文

描述

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

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

参数

method

EventSslContext::*_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,
));
?>
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top