update : 2015.11.03
php.shukuma.com

검색:
 
 
Set the stream chunk size

stream_set_chunk_size

(PHP 5 >= 5.4.0)

stream_set_chunk_sizeSet the stream chunk size

설명

int stream_set_chunk_size ( resource $fp , int $chunk_size )

Set the stream chunk size.

인수

fp

The target stream.

chunk_size

The desired new chunk size.

반환값

Returns the previous chunk size on success.

Will return FALSE if chunk_size is less than 1 or greater than PHP_INT_MAX.

오류/예외

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