Php/docs/eventbufferevent.getinput

提供:Dev Guides
< Php
移動先:案内検索

EventBufferEvent::getInput

(PECL event >= 1.2.6-beta)

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


説明

public EventBufferEvent::getInput ( ) : EventBuffer

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

<?phpfunction readcb($bev, $base) {    $input = $bev->input; //$bev->getInput();    while (($n = $input->remove($buf, 1024)) > 0) {        echo $buf;    }}?>

参考