zip_entry_compressed_size() 函数返回 zip 存档条目的压缩文件大小。
用法
zip_entry_compressed_size(zip_entry)
参数
zip_entry− zip 条目资源。必需的。
返回
zip_entry_compressed_size() 函数返回 zip 存档条目的压缩文件大小。
以下是获取 "new.zip" 存档中文件大小的示例。
示例
<?php
$zip = zip_open("new.zip");
if ($zip) {
while ($zip_entry = zip_read($zip)) {
echo "Compressed = ". zip_entry_compressedsize($zip_entry). "<br />";
}
zip_close($zip);
}
?>
输出
Compressed:90 Compressed:12 Compressed:67
相关用法
- PHP zip_entry_compressedsize()用法及代码示例
- PHP zip_entry_compressionmethod()用法及代码示例
- PHP zip_entry_close()用法及代码示例
- PHP zip_entry_name()用法及代码示例
- PHP zip_entry_filesize()用法及代码示例
- PHP zip_entry_open()用法及代码示例
- PHP zip_entry_read()用法及代码示例
- PHP zip_open()用法及代码示例
- PHP zip_read()用法及代码示例
- PHP zip_close( )用法及代码示例
- PHP PHPUnit assertIsNotFloat()用法及代码示例
- PHP disk_total_space()用法及代码示例
- PHP ReflectionClass getTraitAliases()用法及代码示例
- PHP hash_hmac()用法及代码示例
- PHP String wordwrap()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP ArrayIterator asort()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 zip_entry_compressed_size() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。