array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'eventbufferevent.sslerror.php', 1 => 'EventBufferEvent::sslError', 2 => 'Returns most recent OpenSSL error reported on the buffer event', ), 'up' => array ( 0 => 'class.eventbufferevent.php', 1 => 'EventBufferEvent', ), 'prev' => array ( 0 => 'eventbufferevent.setwatermark.php', 1 => 'EventBufferEvent::setWatermark', ), 'next' => array ( 0 => 'eventbufferevent.sslfilter.php', 1 => 'EventBufferEvent::sslFilter', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/event/eventbufferevent/sslerror.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

EventBufferEvent::sslError

(PECL event >= 1.2.6-beta)

EventBufferEvent::sslErrorReturns most recent OpenSSL error reported on the buffer event

Опис

public EventBufferEvent::sslError(): string

Returns most recent OpenSSL error reported on the buffer event.

Зауваження:

This function is available only if Event is compiled with OpenSSL support.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns OpenSSL error string reported on the buffer event, or false, if there is no more error to return.

Приклади

Приклад #1 EventBufferEvent::sslError() example

<?php
// This callback is invoked when some even occurs on the event listener,
// e.g. connection closed, or an error occurred
function ssl_event_cb($bev, $events, $ctx) {
if (
$events & EventBufferEvent::ERROR) {
// Fetch errors from the SSL error stack
while ($err = $bev->sslError()) {
fprintf(STDERR, "Bufferevent error %s.\n", $err);
}
}

if (
$events & (EventBufferEvent::EOF | EventBufferEvent::ERROR)) {
$bev->free();
}
}
?>

Прогляньте також