This module enables you to transparently read ZIP compressed archives and the files inside them.
This module uses the functions of the ZZIPlib library by Guido Draheim. You need ZZIPlib version >= 0.10.6.
Note that ZZIPlib only provides a subset of functions provided in a full implementation of the ZIP compression algorithm and can only read ZIP file archives. A normal ZIP utility is needed to create the ZIP file archives read by this library.
Denne PECL udvidelse medfølger ikke i PHP. Uddybende information så som nye udgivelser, downloads, kildekoder, vedligeholder information samt en CHANGELOG, kan findes her: http://pecl.php.net/package/zip.
I PHP 4 er denne PECL udvidelses kildekode kan blive fundet i ext/ biblioteket inde i PHP kildekoden eller ved PECL linket ovenover. In order to use these functions you must compile PHP with zip support by using the --with-zip[=DIR] configure option.
Windows users will enable php_zip.dll inside of php.ini in order to use these functions. I PHP 4 befinder denne DLL sig i extensions/ biblioteket inde i PHP Windows binær download. Du kan hente denne PECL udvidelse DLL fra PHP Downloads siden eller på http://snaps.php.net/.
Bemærk: Zip support before PHP 4.1.0 is experimental. This section reflects the Zip extension as it exists in PHP 4.1.0 and later.
Denne udvidelse har intet konfigurations-direktiv defineret i php.ini.
Denne udvidelse har ingen ressourcetyper defineret.
Denne udvidelse har ingen konstanter.
This example opens a ZIP file archive, reads each file in the archive and prints out its contents. The test2.zip archive used in this example is one of the test archives in the ZZIPlib source distribution.