欢迎访问服务器技术网-www.fuwuqijishu.com

PHP zip_entry_read() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 180次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP zip_entry_read() 函数


完整的 PHP Zip File 参考手册


定义和用法

zip_entry_read() 函数从打开的 zip 档案中获取内容。

如果成功,该函数则返回项目的内容。如果失败,则返回 FALSE。

语法

zip_entry_read(zip_entry,length)

参数 描述
zip_entry 必需。规定要读取的 zip 项目资源(由 zip_read() 打开的 zip 项目)。
length 可选。规定返回的字节数(未压缩尺寸)。默认是 1024。


实例

<?php
$zip = zip_open(“test.zip”);

if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo “<p>”;
echo “Name: ” . zip_entry_name($zip_entry) . “<br />”;

if (zip_entry_open($zip, $zip_entry))
{
echo “File Contents:<br/>”;
$contents = zip_entry_read($zip_entry);
echo “$contents<br />”;
zip_entry_close($zip_entry);
}
echo “</p>”;
}

zip_close($zip);
}
?>

代码的输出取决于 zip 档案的内容:

Name: ziptest.txt
File Contents:
Hello World! This is a test for a the zip functions in PHP.

Name: htmlziptest.html
File Contents:

Hello World!

This is a test for a the zip functions in PHP.


完整的 PHP Zip File 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2120.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900