PHP.nl

stream_set_read_buffer

stream_set_read_buffer

Set read file buffering on the given stream

int **stream_set_read_buffer** resource $stream int $size

Sets the read buffer. It's the equivalent of , but for read operations. stream_set_write_buffer

streamThe file pointer.

size The number of bytes to buffer. If is 0 then read operations are unbuffered. This ensures that all reads with are completed before other processes are allowed to read from that input stream. size``fread

Returns 0 on success, or another value if the request cannot be honored.

stream_set_write_buffer