EventBuffer::read
EventBuffer::read
(PECL event >= 1.6.0)
EventBuffer :: read - 从evbuffer中读取数据并排空读取的字节
描述
public string EventBuffer::read ( int $max_bytes )
从缓冲区读取第一个max_bytes
,并读取读取的字节。如果请求的缓冲区max_bytes
数多于缓冲区中可用的数据量,它只会提取尽可能多的字节。
参数
max_bytes
从缓冲区读取的最大字节数。
返回值
返回字符串读取,或失败时返回FALSE
。
更新日志
版 | 描述 |
---|---|
1.6.0 | 将EventBuffer :: read()(旧方法名称)重命名为EventBuffer :: read()。EventBuffer :: read()现在只接受max_bytes参数; 返回字符串而不是整数。 |