This module uses the functions of the ZZIPlib library by Guido Draheim to transparently read ZIP compressed archives and the files inside them.
這個模組使用ZZIPlib 函式庫(Guido Draheim)來讀取ZIP 壓縮文件和裡面的檔案
Please 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 ate the 1.請注意:這個函式庫只是ZIP所有擴充功能的子集,只能讀取ZIP 文件裡面的內容。一個普通的ZIP 環境需要能建立ZIP 文件
Zip support in PHP is not enabled by default. You will need to use the --with-zip configuration option when compiling PHP to enable zip supports This ZZIPlib version >= 0.10.6.
PHP 沒有預設支援ZIP,你需要使用--with-zip 設定編譯你的PHP.這個模組需要ZZPIlib 版本>=0.10.6
Note: Zip support before PHP 4.0.7 is experimental. This section reflects the Zip extension as it exists in PHP 4.0.7 and later.
注意:zip在4.0.7之前是測試的。這一章寫的是php4.0.7 和以後版本的東西
Example Usage
This example opens a ZIP file archive, reads each file in the archive and prints out its contents. The test2.php archive used in this example is one of the test archives in the ZZIPlib source distribution.
Example 1. Zip Usage Example
if ($zip) {
while ($zip_entry = zip_read($zip)) {
echo "Name: " . zip_entry_name($ zip_entry) . "n";
echo "Actual Filesize: " . zip_entry_filesize($zip_entry) . "n";
echo "Compressed Size: " . zip_entry_compressalize($zip_ent); echo "Compression Method: " . zip_entry_compressionmethod($zip_entry) . "n";
if (zip_entry_open($zip, $zip_entry, "r")) {
echo "File Contents:ncho";
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
echo "$bufn";
zip_entry_close($zip_ip_pip_pip; ;
}
zip_close($zip);
}
?>
http://www.bkjia.com/PHPjc/315217.html
www.bkjia.com
true