目录类似于:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
我使用的 PHP Zip 类与 PHPMyAdminhttp://trac.seagullproject.org/browser/branches/0.6-bugfix/lib/other/Zip.php中使用的相同。我不知道如何压缩目录而不仅仅是一个文件。以下是我目前掌握的信息:
$aFiles = $this->da->getDirTree($target);
/* $aFiles is something like, path => filetime
Array
(
[home] =>
[home/file1.html] => 1251280379
[home/file2.html] => 1251280377
etc...
)
*/
$zip = & new Zip();
foreach( $aFiles as $fileLocation => $time ){
$file = $target . "/" . $fileLocation;
if ( is_file($file) ){
$buffer = file_get_contents($file);
$zip->addFile($buffer, $fileLocation);
}
}
THEN_SOME_PHP_CLASS::toDownloadData($zip); // this bit works ok
但是当我试图解压缩相应的下载的压缩文件,我得到“操作不允许”
这个错误只发生在我试图解压缩在我的 Mac,当我解压缩通过命令行的文件解压缩 OK。我是否需要在下载时发送特定的内容类型,目前是“ application/zip”