ไดเรกทอรีเป็นสิ่งที่ต้องการ:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
ฉันใช้เรียน PHP ซิปเดียวกับที่ใช้ใน PHPMyAdmin http://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
แต่เมื่อฉันพยายามคลายซิปไฟล์ zip ที่ดาวน์โหลดมาฉันได้รับ "การดำเนินการไม่ได้รับอนุญาต"
ข้อผิดพลาดนี้เกิดขึ้นเฉพาะเมื่อฉันพยายามคลายซิปบนเครื่อง Mac ของฉันเมื่อฉันเปิดเครื่องรูดผ่านบรรทัดคำสั่งไฟล์จะคลายซิปได้ ฉันจำเป็นต้องส่งประเภทเนื้อหาเฉพาะเมื่อดาวน์โหลดซึ่งปัจจุบันเป็น "แอปพลิเคชัน / zip"