stream_set_read_buffer
(PHP 5 >= 5.3.3)
stream_set_read_buffer — Set read file buffering on the given stream
Descrição
int stream_set_read_buffer
( resource $stream
, int $buffer
)
Sets the read buffer. It's the equivalent of stream_set_write_buffer(), but for read operations.
Parâmetros
- stream
-
The file pointer.
- buffer
-
The number of bytes to buffer. If buffer is 0 then read operations are unbuffered. This ensures that all reads with fread() are completed before other processes are allowed to write to that output stream.
Valor Retornado
Returns 0 on success, or EOF if the request cannot be honored.
Veja Também
- stream_set_write_buffer() - Sets write file buffering on the given stream
User Contributed Notes
stream_set_read_buffer
stream_set_read_buffer
There are no user contributed notes for this page.

stream_set_blocking