I have to create a WinZip compatible zip file from a PHP application on a linux box, and it must use AES 256 encryption. I have found a few solutions for PHP on Windows, but they don't help me! A PHP package would be great, but if I need to, I can always have my PHP code run exec() or something to run a linux command line utility.
Any suggestions?
exec
command to an external zip application to both zip and apply encryption to your files at the same time is likely just fine. If encryption is not important at the time, just use PHP's zip class. If it is, call an external zip application to do that job. In other words, Woot4Moo's answer is not entirely off. – Gigantopithecus