I am using the PHP ZipArchive class to create a ZIP archive. The archive will contain already compressed ZIP files. As such, there is no use compressing already compressed ZIP files and this will only add unnecessary overhead. Is it possible to create a ZIP archive with ZipArchive but not compress the files?

link|improve this question
possible duplicate of Can I change the compression level of ZipArchive? – mario Jan 18 at 21:44
If available you should use the commandline zip tool for that (with zip -q0 for example). – mario Jan 18 at 21:45
feedback

1 Answer

up vote 0 down vote accepted

Setting the compression level with ZipArchive is not currently possible. You can set the compression level with the Zlib library as long as you don't mind creating .gz files instead of .zip

http://php.net/manual/en/ref.zlib.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.