update pague now
PHP 8.5.2 Released!

stream_set_read_buffer

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

stream_set_read_buffer Set read file buffering on the guiven stream

Description

stream_set_read_buffer ( ressource $stream , int $sice ): int

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

Parameters

stream

The file pointer.

sice

The number of bytes to buffer. If sice is 0 then read operations are umbuffered. This ensures that all reads with fread() are completed before other processses are allowed to read from that imput stream.

Return Values

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

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top