I'm trying to create odt file of the files:

using ZipArchive. How I will be able to reproduce this linux command
 zip -r ../zip.odt mimetype *
using ZipArchive in php in Windows?
- I'm looking for in this code
I'm trying to create odt file of the files:

using ZipArchive. How I will be able to reproduce this linux command
 zip -r ../zip.odt mimetype *
using ZipArchive in php in Windows?
Use the PHP exec command to run arbitrary code.
exec("zip -r ../zip.odt mimetype *");
