stream_copy_to_stream的使用

时间:2022-12-26 12:47:49

  stream_copy_to_stream - 在数据流之间进行复制操作

  例子: 

 <?php

 //读写方式
$stream = fopen('php://temp', 'w+'); //如果成功返回拷贝的字节数,否则false
$len = stream_copy_to_stream(fopen('./composer.json','r'),$stream);
//指针设为文件流的开头
rewind($stream); //var_dump($len); //从流文件获取内容
echo stream_get_contents($stream); //或者
//while (!feof($stream)) {
// echo fread($stream,100);
//}