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.

예제

Example #1 Buffer event's read callback

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

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

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top