stream_copy_to_stream - 在数据流之间进行复制操作
例子:
1 <?php 2 3 //读写方式 4 $stream = fopen('php://temp', 'w+'); 5 6 //如果成功返回拷贝的字节数,否则false 7 $len = stream_copy_to_stream(fopen('./composer.json','r'),$stream); 8 //指针设为文件流的开头 9 rewind($stream); 10 11 //var_dump($len); 12 13 //从流文件获取内容 14 echo stream_get_contents($stream); 15 16 //或者 17 //while (!feof($stream)) { 18 // echo fread($stream,100); 19 //}