当前位置:  开发笔记 > 编程语言 > 正文

PHP ZIP文件即时

如何解决《PHPZIP文件即时》经验,为你挑选了3个好方法。

从服务器上的文件夹压缩,说2个文件最简单的方法是什么?强行下载?不保存"zip"到服务器.

    $zip = new ZipArchive();
   //the string "file1" is the name we're assigning the file in the archive
$zip->addFile(file_get_contents($filepath1), 'file1'); //file 1 that you want compressed
$zip->addFile(file_get_contents($filepath2), 'file2'); //file 2 that you want compressed
$zip->addFile(file_get_contents($filepath3), 'file3'); //file 3 that you want compressed
echo $zip->file(); //this sends the compressed archive to the output buffer instead of writing it to a file.

有人可以验证:我有一个包含test1.doc,test2.doc和test3.doc的文件夹

使用上面的示例 - file1(file2和file3)可能只是test1.doc等.

我必须对"$ filepath1"做任何事情吗?这是包含3个文档的文件夹目录吗?

对不起我的基本问题..



1> maraspin..:

不幸的是,在CentOS 5.x上使用PHP 5.3.4-dev和Zend Engine v2.3.0我无法获得上面的代码.我无法获得" 无效或单一化的Zip对象 "错误消息.因此,为了使其工作,我不得不使用以下片段(摘自Jonathan Baltazar在PHP.net手册中的示例,在ZipArchive ::打开页面):

// Prepare File
$file = tempnam("tmp", "zip");
$zip = new ZipArchive();
$zip->open($file, ZipArchive::OVERWRITE);

// Stuff with content
$zip->addFromString('file_name_within_archive.ext', $your_string_data);
$zip->addFile('file_on_server.ext', 'second_file_name_within_archive.ext');

// Close and send to users
$zip->close();
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile($file);
unlink($file); 

我知道这与仅使用内存工作不同 - 除非你在ram中有你的tmp区域;-) - 但也许这可以帮助其他人,他正在努力解决上述解决方案,就像我一样; 而且性能损失不是问题.



2> sakabako..:

你的代码非常接近.您需要使用文件名而不是文件内容.

$zip->addFile(file_get_contents($filepath1), 'file1');

应该

$zip->addFile($filepath1, 'file1');

http://us3.php.net/manual/en/function.ziparchive-addfile.php

如果需要从变量而不是文件添加文件,可以使用addFromString函数.

$zip->addFromString( 'file1', $data );



3> Vinko Vrsalo..:

如果您可以访问zip命令行实用程序,则可以尝试


其中files是要压缩的东西,并将位置压缩到zip可执行文件.

当然,这假设是Linux或类似的.在Windows中,我猜你可以用另一种压缩工具做类似的事情.

还有一个zip扩展,使用显示在这里.

推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有