La directory è qualcosa del tipo:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
Sto usando la stessa classe PHP Zip usata in PHPMyAdmin http://trac.seagullproject.org/browser/branches/0.6-bugfix/lib/other/Zip.php . Non sono sicuro di come comprimere una directory piuttosto che solo un file. Ecco cosa ho finora:
$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
ma quando provo a decomprimere il file zip scaricato corrispondente ottengo "operazione non consentita"
Questo errore si verifica solo quando provo a decomprimere sul mio Mac, quando decomprimo tramite la riga di comando il file si decomprime correttamente. Devo inviare un tipo di contenuto specifico durante il download, attualmente "application / zip"