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

EventBufferEvent::getInput - Returns underlying input buffer associated with current buffer event | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

EventBufferEvent::getInput

(PECL event >= 1.2.6-beta)

EventBufferEvent::getInputReturns underlying input buffer associated with current buffer event

説明

public EventBuffer EventBufferEvent::getInput ( void )

Returns underlying input buffer associated with current buffer event. An input buffer is a storage for data to read.

Note, there is also input property of EventBufferEvent class.

パラメータ

この関数にはパラメータはありません。

返り値

Returns instance of EventBuffer input buffer associated with current buffer event.

例1 Buffer event's read callback

<?php
function readcb($bev$base) {
    
$input $bev->input//$bev->getInput();

    
while (($n $input->remove($buf1024)) > 0) {
        echo 
$buf;
    }
}
?>

参考


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

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