略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: EventBufferEvent::sslError

2024-05-06

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();
    }
}
?>

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/eventbufferevent.sslerror.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3