stream_set_chunk_size

(PHP 5 >= 5.4.0, PHP 7)

stream_set_chunk_sizeSet the stream chunk size

Descrierea

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

Set the stream chunk size.

Parametri

stream

The target stream.

size

The desired new chunk size.

Valorile întoarse

Returns the previous chunk size on success.

Will return false if size is less than 1 or greater than PHP_INT_MAX.

Erori/Excepții

Will emit an E_WARNING level error if size is less than 1 or greater than PHP_INT_MAX.

add a note add a note

User Contributed Notes

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