(PECL event >= 1.2.6-beta)
Returns 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:
Returns instance of EventBuffer input buffer associated with current buffer event.
Examples:
Buffer event's read callback
<?php
function readcb($bev, $base) {
$input = $bev->input; //$bev->getInput();
while (($n = $input->remove($buf, 1024)) > 0) {
echo $buf;
}
}
?>
See also:
Please login to continue.