php8.5
Home/ Manual/ stream / functions/ stream_set_read_buffer

stream_set_read_buffer

PHP function Edit on GitHub ✎

(PHP 5 >= 5.3.3, PHP 7, PHP 8)

Set read file buffering on the given stream

Description

stream_set_read_buffer(resource $stream, int $size): int

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

Parameters

stream

The file pointer.

size

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

Return Values

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

See Also

Source: reference/stream/functions/stream-set-read-buffer.xml · from the official PHP manual (php/doc-en)