ziparchive
What encoding does ZipArchive use to store file names inside the created archive?
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[详细]
2023-02-10 09:25 分类:问答PHP ZipArchive Corrupt in Windows
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:[详细]
2023-02-03 03:03 分类:问答How-to activate the ZipArchive class in PHP 5.3 on CentOS
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[详细]
2023-01-27 22:16 分类:问答Create a zip file using PHP class ZipArchive without writing the file to disk?
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?[详细]
2023-01-24 14:13 分类:问答Zip Archive Library decompression with AES-256
I am using Zip Archive library for compressing and decompressing files, i needed to enable AES encryption so by Uncommenting[详细]
2023-01-24 11:53 分类:问答downloading large amount of files
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.[详细]
2023-01-22 11:12 分类:问答On the fly zip or tar creation?
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[详细]
2023-01-20 22:57 分类:问答archive created by ZipArchive object are corrupted
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:[详细]
2023-01-14 23:08 分类:问答PHP ZipArchive not adding more than 700 files
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.[详细]
2023-01-10 15:25 分类:问答ZipArchive php class extract files as root. Why?
I have a php script: $extract_dir = \"./\"; $extract_file = \"extractME.zip\"; $zip = new ZipArchive; $res = $zip->open($extract_file);[详细]
2023-01-10 01:24 分类:问答