php8.5
Home/ Manual/ event / eventsslcontext/ EventSslContext::__construct

EventSslContext::__construct

PHP function Edit on GitHub ✎

(PECL event >= 1.2.6-beta)

Constructs an OpenSSL context for use with Event classes

Description

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

Creates SSL context holding pointer to SSL_CTX (see the system manual).

Parameters

method

One of EventSslContext::*_METHOD constants.

options

Associative array of SSL context options One of EventSslContext::OPT_* constants.

Examples

EventSslContext::__construct() example

php
<?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,
));
?>

Source: reference/event/eventsslcontext/construct.xml · from the official PHP manual (php/doc-en)