EventBufferEvent::getInput

EventBufferEvent::getInput

(PECL event >= 1.2.6-beta)

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

Description

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.

Parameters

This function has no parameters.

Return Values

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

Examples

Example #1 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

© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/eventbufferevent.getinput.php

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部