STREAM_SET_CHUNK_SIZE
Set the stream chunk size
SYNTAX
stream_set_chunk_size ( resource $fp , int $chunk_size ) : int
PARAMETERS
fp
The target stream.
chunk_size
The desired new chunk size.
RETURN
Returns the previous chunk size on success. Will return FALSE if chunk_size is less than 1 or greater than PHP_INT_MAX.
EXAMPLES
8192