I\'m using the php ZipArchive class in order to generate a zip archive. I use the second parameter of the addFile method in order to set th开发者_StackOverflow社区e name of the file in the archive (si
I am using PHP\'s ZipArchive class to create a zip file containing photos and then serve it up to the browser for download. Here is my code:
I read on the documentation I should only compile PHP 5.3.3 with \"--enable-zip\" parameter, but this doesn\'t work. I did this but class_exists(\'ZipArchive\') always return 开发者_如何学编程false. W
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?
I am using Zip Archive library for compressing and decompressing files, i needed to enable AES encryption so by Uncommenting
I\'m researching solutions for a potential client. They\'re requesting the ability to download a large amount of MP3\'s (1000+) from their online catalog.
I may NOT bother with this but if its very simple i may consider it. The site i am working on by design is to hold hundreds of thousands of files. I dont know if we\'ll have only one download or multi
I used the function described in the following URL to c开发者_如何学编程reate some zip files programatically which turned out to be working wonderful on the development site:
I have a problem with the php_zip.dll\'s ZipArchive class. I\'m using it through the ZipArchiveImproved wrapper class suggested on php.net to avoid the max file-handle issue.
I have a php script: $extract_dir = \"./\"; $extract_file = \"extractME.zip\"; $zip = new ZipArchive; $res = $zip->open($extract_file);