You were pretty close:
$zip = new ZipArchive(); $zip->open('my-archive.zip', ZipArchive::CREATE); // To actually save the archive you have to put some file/dir into it $zip->addFromString('tmp', ''); $zip->close();
You can learn more about the PHP manual pages .
source share