I would like to create a zip file in memory using a ZipArchive (or a native PHP class) and read the content of the file back to the client. Is this possible? If so, how?

The files that I want to zip in this application are a maximum of 15 MB total. I think we should be in good shape memory-wise.

link|improve this question

2  
and how will you handle zip archives that exceed the amount of memory available to PHP? – stillstanding Nov 12 '10 at 13:55
please let this question stay open, stackoverflow.com/questions/1061710/php-zip-files-on-the-fly was asked in a way that it could receive useful answers. – CLJ Nov 12 '10 at 14:13
sorry, your comment has confused me. Please explain. – Oddthinking Nov 12 '10 at 14:20
@Oddthinking, sorry about that. The other question and answers skip over the part where the zip file is opened for writing (php.net/manual/en/function.ziparchive-open.php), which is the crux of the entire problem. If that is not addressed, the problem can not be solved. – CLJ Nov 12 '10 at 14:30
feedback

1 Answer

up vote 2 down vote accepted

Take a look at the following library, it allows creating zip files and returning them as a stream: PHPClasses.org.

link|improve this answer
I would like something that is native to the standard php library. – CLJ Nov 12 '10 at 14:22
If I may ask, is there a reason for that? – Cpt. eMco Nov 12 '10 at 15:02
So I do not have to drag in a dependency and maintain it over time. If it is included in the standard library, I will not have to worry about incompatibly when I upgrade php versions. – CLJ Nov 12 '10 at 15:08
2  
Actually, it's a PHP class. And it requires PHP5. Upgrade concerns should be worrying you when PHP6 arrives (not anytime soon). – Joel Alejandro Nov 12 '10 at 17:22
@Chris: You may have a look too at pablotron.org/software/zipstream-php (suggested here: stackoverflow.com/questions/990462/…) – Frosty Z Nov 16 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown

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