PHP zip_entry_filesize() 函数
PHP zip_entry_filesize() 函数
完整的 PHP Zip File 参考手册定义和用法
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);
}
?>
$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
Original size: 59
Name: htmlziptest.html
Original size: 124
完整的 PHP Zip File 参考手册
相关文章
- PHP 变量
- PHP 数据类型
- PHP 命名空间 namespace
- PHP array_column() 函数
- PHP array_filter() 函数
- PHP array_intersect_key() 函数
- PHP array_pad() 函数
- PHP array_product() 函数
- PHP array_push() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP arsort() 函数
- PHP current() 函数
- PHP natcasesort() 函数
- PHP next() 函数
- PHP uksort() 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP Error 和 Logging 函数