MENU
Adding Files
If archive.zip already exists, the files will be added to the archive. The second parameter to $zip->addFile() is optional.
<?php
$zip = new ZipArchive();
$filename = "./archive.zip";
if ($zip->open($filename, ZipArchive::CREATE)!==TRUE)
exit("cannot open <$filename>\n");
$zip->addFile("test.php","new_name.php");
echo "numfiles: " . $zip->numFiles . "<br/>";
echo "status:" . $zip->status . "<br/>";
$zip->close();
?>