PHP save zip to disk
file, php, upload, web, zip
Solution
Simply pass the desired destination path to the zip when creating it:
$path = 'path/to/file.zip';
$zip = new ZipArchive();
$zip->open($path, ZipArchive::CREATE);
// add contents...
$zip->close();
Problem
I want to zip files uploaded by a user to a certain Location. While the upload part works, I have no Idea how to zip the file. I am able to create a zip, but do not now how to actually save it to a disk.