首页 > 作文

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

更新时间:2023-04-06 06:33:33 阅读: 评论:0

this module us the funct标准论文格式范文ions of the zziplib library by guido draheim to transparently read zip compresd archives and the files inside them.

这个模块使用 zziplib 库(guido draheim)来读取 8字情话zip 压缩文档和里面的文件

plea note that zziplib only provides a subt 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 u the –with-zip configuration option when compiling php to enable zip sup丝袜会所port. 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 ction 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 ud 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_e有关疫情的作文ntry_name($zip_游泳者entry) . “\n”;

echo “actual filesize: ” . zip_entry_filesize($zip_entry) . “\n”;

echo “compresd size: ” . zip_entry_compresdsize($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_clo($zip_entry);

}

echo “\n”;

}

zip_clo($zip);

}

?>

本文发布于:2023-04-06 06:33:32,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/40e0fad477fa60d08fbb3c6dd8b11076.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP 增加了对 .ZIP 文件的读取功能.doc

本文 PDF 下载地址:PHP 增加了对 .ZIP 文件的读取功能.pdf

标签:文档   的是   模块   版本
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图