Returns underlying input buffer associated with current buffer event

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

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

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

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *