It will allow developers to zip/unzip archive files on the fly, using PHP code only.
Here are some key features of "TbsZip":
· Read a common zip archive, or start with an empty archive
· Can modify the content of files in the archive (replace, delete or add new file)
· The new file content can come from a PHP string, or an external physical file
· The modified archive can be released as a new physical file, an HTTP download, or a PHP string
· The original archive is not modified
· The class does not use temporary files
Requirements:
· PHP 4 or higher
· ZLIB PHP Extension
Limitations:
· Doesn't support Zip64 archives
· Doesn't support zip file comments (very rarely used, not editable in 7-Zip yet)
· Needs the Zlib extension only to compress or uncompress files in the archive (Zlib is commonly available in most of PHP installations)
What's New in This Release: [ read full changelog ]
· Fixed method FileCancelModif() doesn't cancel added files.