Is there a library for crating/extracting zip files in php?
The ZipArchive class works erratically, and this is mentioned on php.net : (for every function I checked)
ZipArchive::addEmptyDir (No version information available, might be only in CVS)
|
|
|
|
|
|
|
You can call out from PHP into .NET assemblies. If you don't mind that, then you could use DotNetZip - it's reliable and totally non-erratic. Sample code:
|
|||
|
|
|
|
Ok, I checked http://pear.php.net/package/Archive_Zip as posted by Irmantas, File_Archive doesn't have a very intuitive set of methods though. But I wanted simple functionality of making a tar file, and extracting files from a tar file. Following snippets achieve that : Extracting files from a tar file ->
Adding files to a tar file ->
|
||
|
|
|
|
The same module which includes ZipArchive also includes a number of functions which allow procedural access to zip files. This functionality is available in PHP 4 (since 4.0.7) and PHP 5 (since 5.2.0).
|
|||
|
|
|
|
PHP has native Zip support via GZip (may not be enabled by default) http://us2.php.net/zlib You can also use this class (Drupal is not part of this implementation) http://drupal.org/node/83253 |
||
|
|
|
|
Check PEAR Archive_Zip it might help you http://pear.php.net/package/Archive_Zip/docs/latest/Archive_Zip/Archive_Zip.html |
||
|
|