- PHP 手册
- 函数参考
- 其它基本扩展
- Streams
- Stream 函数
stream_set_chunk_size
(PHP 5 >= 5.4.0, PHP 7, PHP 8)
stream_set_chunk_size — 设置资源流区块大小
说明
stream_set_chunk_size(resource$stream
, int $size
): int
设置资源流区块大小。
参数
-
stream
-
目标资源流。
-
size
-
想设置的新的区块大小。
返回值
成功的情况下返回资源流之前的区块大小。
如果 size
比 1 小或者比 PHP_INT_MAX
还大,就将返回 false
。
错误/异常
当 size
比 1 小或者比 PHP_INT_MAX
还大的时候将会产生一个 E_WARNING
级别的错误。
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/function.stream-set-chunk-size.php