【发布时间】:2013-05-31 06:12:05
【问题描述】:
任何人请建议我如何压缩文件夹并在 laravel4 上下载该压缩文件。
我需要压缩文件夹/public/zipfolder/
压缩后自动下载zipfolder.zip
我安装了这个包
https://github.com/codeless/ziparchiveex
和路由到
public function show($id)
{
//echo $id;
# ZipArchive as usual:
$zip = new ZipArchiveEx();
//$zip->open('my.zip', ZIPARCHIVE::OVERWRITE);
# Add whole directory including contents:
$zip->addDir('/public/zipfolder/');
# Only add the contents of the directory, but
# not the directory-entry of "mydir" itself:
//$zip->addDirContents('mydir');
# Close archive (as usual):
$zip->close();
}
下面出现错误
ZipArchive::addEmptyDir():Zip对象无效或未初始化
【问题讨论】:
-
告诉我们你尝试了什么