I need to create a zip file with PHP, but the source files are in database rather than stored on disk. Actually, file contents I want to pack are stored as binary in one database, and metas in another.

I have read the docs of class ZipArchive, but it seems that it could only pack files from disk (because file_names are required). I don't want to save files from database to disk, and then pack them, because it may slow down my application. Any other suggestions?

link|improve this question

Please see this function: php.net/manual/en/function.ziparchive-addfromstring.php – Niels Dec 9 '11 at 9:32
thanks, I ignored this method because I thought it is not binary safe for its name containing "string". Solved! – pluto Dec 9 '11 at 9:38
feedback

1 Answer

up vote 1 down vote accepted

Have you tried ZipArchive::addFromString?

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.