Php/func stream copy to stream
来自菜鸟教程
PHP stream_copy_to stream()函数
例
将1024个字节的数据从一个流复制到另一个流:
<?php $src = fopen("test1.txt", "r"); $dest = fopen("test2.txt", "w"); // Copy 1024 bytes to test2.txt echo stream_copy_to_stream($src, $dest, 1024) . " bytes copied to test2.txt"; ?>
定义和用法
stream_copy_to_stream()函数将数据从一个流复制到另一个流。
句法
stream_copy_to_stream(src, dest, maxlength, offset)
参数值
参数 | 描述 |
---|---|
src | 需要。指定要从中复制数据的源流 |
dest | 需要。指定要将数据复制到的目标流 |
maxlength | 可选的。指定要复制的最大字节数 |
offset | 可选的。指定从何处开始复制数据的偏移量 |
技术细节
返回值: | 复制的字节总数。失败时为假 |
PHP版本: | 5.0+ |
PHP更新日志: | PHP 5.1:添加了
offset 参数 |