dshxbrzgi090608692 2016-11-21 07:18
浏览 599
已采纳

如何从AWS S3将文件流式传输到Zip中

I'm using the PHP Flysystem package to stream content from my AWS S3 bucket. In particular, I'm using $filesystem->readStream.

My Question

When I stream a file, it ends up in myzip.zip and the size is correct, but when unzip it, it become myzip.zip.cpgz. Here is my prototype:

header('Pragma: no-cache');
header('Content-Description: File Download');
header('Content-disposition: attachment; filename="myZip.zip"');
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
$s3 = Storage::disk('s3'); // Laravel Syntax
echo $s3->readStream('directory/file.jpg');

What am I doing wrong?

Side Question

When I stream a file like this, does it:

  1. get fully downloaded into my server's RAM, then get transferred to the client, or
  2. does it get saved - in chunks - in the buffer, and then get transferred to the client?

Basically, is my server being burdened if I have have dozens of GB's of data being streamed?

  • 写回答

1条回答 默认 最新

  • dpw5865 2016-11-21 07:38
    关注

    You are currently dumping the raw contents of the directory/file.jpg as the zip (which a jpg is not a zip) . You need to create a zip file with those contents.

    Instead of

    echo $s3->readStream('directory/file.jpg');
    

    Try the following in its place using the Zip extension:

    // use a temporary file to store the Zip file
    $zipFile = tmpfile();
    $zipPath = stream_get_meta_data($zipFile)['uri'];
    $jpgFile = tmpfile();
    $jpgPath = stream_get_meta_data($jpgFile)['uri'];
    
    // Download the file to disk
    stream_copy_to_stream($s3->readStream('directory/file.jpg'), $jpgFile);
    
    // Create the zip file with the file and its contents
    $zip = new ZipArchive();
    $zip->open($zipPath);
    $zip->addFile($jpgPath, 'file.jpg');
    $zip->close();
    
    // export the contents of the zip
    readfile($zipPath);
    

    Using tmpfile and stream_copy_to_stream, it will download it in chunks to a temporary file on disk and not into RAM

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?