我想使用 ZipArchive(或本机 PHP 类)在内存中创建一个 zip 文件,并将文件的内容读回客户端。这可能吗?如果是这样,怎么做?
我要在此应用程序中压缩的文件总共最多为 15 MB。我认为我们应该在记忆方面保持良好的状态。
我想使用 ZipArchive(或本机 PHP 类)在内存中创建一个 zip 文件,并将文件的内容读回客户端。这可能吗?如果是这样,怎么做?
我要在此应用程序中压缩的文件总共最多为 15 MB。我认为我们应该在记忆方面保持良好的状态。
看看下面的库,它允许创建 zip 文件并将它们作为流返回:PHPClasses.org。
感谢 Frosty Z 提供了很棒的库 ZipStream-PHP。我们有一个用例将一些数量和大小的大型 zip 文件上传到 S3。官方文档没有提到如何上传到 S3。
因此,我们有了一个想法,将 ZipStream 输出创建的 zip 直接流式传输到 S3,而无需在服务器上创建 zip 文件。
这是我们提出的一个工作示例代码:
<?php
# Autoload the dependencies
require 'vendor/autoload.php';
use Aws\S3\S3Client;
use ZipStream\Option\Archive as ArchiveOptions;
//s3client service
$s3Client = new S3Client([
'region' => 'ap-southeast-2',
'version' => 'latest',
'credentials' => [
'key' => '<AWS_KEY>',
'secret' => '<AWS_SECRET_KEY>',
]
]);
$s3Client->registerStreamWrapper(); //required
$opt = new ArchiveOptions();
$opt->setContentType('application/octet-stream');
$opt->setEnableZip64(false); //optional - for MacOs to open archives
$bucket = 'your_bucket_path';
$zipName = 'target.zip';
$zip = new ZipStream\ZipStream($zipName, $opt);
$path = "s3://{$bucket}/{$zipName}";
$s3Stream = fopen($path, 'w');
$zip->opt->setOutputStream($s3Stream); // set ZipStream's output stream to the open S3 stream
$filePath1 = './local_files/document1.zip';
$filePath2 = './local_files/document2.zip';
$filePath3 = './local_files/document3.zip';
$zip->addFileFromPath(basename($filePath1), $filePath1);
$zip->addFileFromPath(basename($filePath2), $filePath2);
$zip->addFileFromPath(basename($filePath3), $filePath3);
$zip->finish(); // sends the stream to S3
?>
还有另一个线程在讨论这个问题: Manipulate an Archive in memory with PHP (without create a temporary file on disk)
荨麻建议使用phpmyadmin的 zip.lib.php 。我认为这是一个相当可靠的解决方案。
仅供参考zip.lib.php不再存在,它已被同一库/文件夹中的ZipFile.php替换。