欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  头条

zip_entry函数介绍与使用方法详解

程序员文章站 2022-04-09 11:51:10
...

定义和用法

The zip_entry_filesize() 函数返回 zip 档案项目的原始文件尺寸(在压缩之前)。

语法

zip_entry_filesize(zip_entry)

参数:zip_entry

描述:必需。规定要读取的 zip 项目资源(由 zip_read() 打开的 zip 项目)。

实例:

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

if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo "<p>";
echo "Name: " . zip_entry_name($zip_entry) . "<br />";
echo "Original size: " . zip_entry_filesize($zip_entry);
echo "</p>";
}
zip_close($zip);
}
?>

代码输出

Name: ziptest.txt

Original size: 59

Name: htmlziptest.html

Original size: 124

php_rar.dll扩展有没有类似php_zip.dll的zip_entry_read函数php_zip.dll的zip_entry_read函数 在不解压的情况下直接读取压缩包内具体文件的内容在php_rar.dll中有没有类似的函数呢?------解决方案-------------------- 参考 http://www.php.net/manual/zh/class.rararchive.php

1. php_rar.dll扩充有没有类似php_zip.dll的zip_entry_read函数

简介:php_rar.dll扩展有没有类似php_zip.dll的zip_entry_read函数php_zip.dll的zip_entry_read函数 在不解压的情况下直接读取压缩包内具体文件的内容在php_rar.dll中有没有类似的函数呢?------解决方案-------------------- 参考 http://www.php.net/manu

2. php_rar.dll扩充有没有类似php_zip.dll的zip_entry_read函数

简介:php_rar.dll扩展有没有类似php_zip.dll的zip_entry_read函数php_zip.dll的zip_entry_read函数 在不解压的情况下直接读取压缩包内具体文件的内容在php_rar.dll中有没有类似的函数呢?------解决方案--------------------参考 http://www.php.net/manua

【相关问答推荐】: