PHP 增加了对 .ZIP 文件的读取功能


Posted in PHP onOctober 09, 2006

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 create the ZIP file archives read by this library.
请注意:这个库只是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 support. This module requires 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

<?php

$zip = zip_open("/tmp/test2.zip");

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_compressedsize($zip_entry) . "\n";
echo "Compression Method: " . zip_entry_compressionmethod($zip_entry) . "\n";

if (zip_entry_open($zip, $zip_entry, "r")) {
echo "File Contents:\n";
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
echo "$buf\n";

zip_entry_close($zip_entry);
}
echo "\n";

}

zip_close($zip);

}

?> 

PHP 相关文章推荐
十天学会php之第二天
Oct 09 PHP
php 获取完整url地址
Dec 20 PHP
php 冒泡排序 交换排序法
May 10 PHP
理解和运用PHP中的多态性[译]
Aug 02 PHP
浅析SVN常见问题及解决方法
Jun 21 PHP
php while循环得到循环次数
Oct 26 PHP
php的闭包(Closure)匿名函数详解
Feb 22 PHP
golang与PHP输出excel示例
Jul 22 PHP
PHP解压ZIP文件到指定文件夹的方法
Nov 17 PHP
php使用str_replace替换多维数组的实现方法分析
Jun 15 PHP
PHP数组式访问接口ArrayAccess用法分析
Dec 28 PHP
laravel5.2表单验证,并显示错误信息的实例
Sep 29 PHP
如何去掉文章里的 html 语法
Oct 09 #PHP
如何分别全角和半角以避免乱码
Oct 09 #PHP
玩转虚拟域名◎+ .
Oct 09 #PHP
桌面中心(四)数据显示
Oct 09 #PHP
桌面中心(一)创建数据库
Oct 09 #PHP
桌面中心(二)数据库写入
Oct 09 #PHP
桌面中心(三)修改数据库
Oct 09 #PHP
You might like
php查询mssql出现乱码的解决方法
2014/12/29 PHP
prototype 的说明 js类
2006/09/07 Javascript
javascript 实现父窗口引用弹出窗口的值的脚本
2007/08/07 Javascript
基于jquery的inputlimiter 实现字数限制功能
2010/05/30 Javascript
location对象的属性和方法应用(解析URL)
2013/04/12 Javascript
jQuery ReferenceError: $ is not defined 错误的处理办法
2013/05/10 Javascript
javascript 寻找错误方法整理
2014/06/15 Javascript
javascript生成img标签的3种实现方法(对象、方法、html)
2015/12/25 Javascript
js根据手机客户端浏览器类型,判断跳转官网/手机网站多个实例代码
2016/04/30 Javascript
详解JavaScript实现设计模式中的适配器模式的方法
2016/05/18 Javascript
全面解析jQuery $(document).ready()和JavaScript onload事件
2016/06/08 Javascript
jQuery UI结合Ajax创建可定制的Web界面
2016/06/22 Javascript
微信小程序 教程之wxapp 视图容器 view
2016/10/19 Javascript
微信小程序 网络API Websocket详解
2016/11/09 Javascript
Javascript 两种刷新方法以及区别和适用范围
2017/01/17 Javascript
HTML5实现微信拍摄上传照片功能
2017/04/21 Javascript
vue中的适配px2rem示例代码
2018/11/19 Javascript
详解Vue底部导航栏组件
2019/05/02 Javascript
微信公众号获取用户地理位置并列出附近的门店的示例代码
2019/07/25 Javascript
layerui代码控制tab选项卡,添加,关闭的实例
2019/09/04 Javascript
[32:47]完美世界DOTA2联赛 GXR vs IO 第二场 11.07
2020/11/09 DOTA
八大排序算法的Python实现
2021/01/28 Python
Django实战之用户认证(初始配置)
2018/07/16 Python
Python列表list排列组合操作示例
2018/12/18 Python
Python3+Pycharm+PyQt5环境搭建步骤图文详解
2019/05/29 Python
如何基于python对接钉钉并获取access_token
2020/04/21 Python
英国最大的在线运动补充剂商店:Discount Supplements
2017/06/03 全球购物
迟到检讨书300字
2014/02/14 职场文书
竞选班干部的演讲稿
2014/04/24 职场文书
售房委托书
2014/08/30 职场文书
2014年应急管理工作总结
2014/11/26 职场文书
贷款担保书
2015/01/20 职场文书
拾金不昧表扬信怎么写
2015/05/04 职场文书
PyTorch 实现L2正则化以及Dropout的操作
2021/05/27 Python
Python办公自动化之教你如何用Python将任意文件转为PDF格式
2021/06/28 Python
SpringBoot使用AOP实现统计全局接口访问次数详解
2022/06/16 Java/Android