PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

EventBufferEvent::sslError - Returns most recent OpenSSL error reported on the buffer event | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

EventBufferEvent::sslError

(PECL event >= 1.2.6-beta)

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

説明

public string EventBufferEvent::sslError ( void )

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

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「EventBufferEvent::sslError - Returns most recent OpenSSL error reported on the buffer event」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | EventBufferEvent::sslError - Returns most recent OpenSSL error reported on the buffer event」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: