In my application I have to create some zip files and send them in mail through PHP.
Creating Zip files functionality is done using ZipArchive
class. but it reducing file size up to 35-40 %. My client wants more then 60% size reduction.
Is there any other library or way to to this with ZipArchive class?
Is it possible with shell command which I can execute in my php script using exec() ?