PHP zip_entry_compressionmethod() 函数
PHP zip_entry_compressionmethod() 函数
完整的 PHP Zip File 参考手册定义和用法
The zip_entry_compressionmethod() 函数返回 zip 档案项目的压缩方法。
语法
zip_entry_compressionmethod(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 "Compression Method: "
. zip_entry_compressionmethod($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 "Compression Method: "
. zip_entry_compressionmethod($zip_entry);
echo "</p>";
}
zip_close($zip);
}
?>
上面的代码将输出:
Name: ziptest.txt
Compression Method: deflated
Name: htmlziptest.html
Compression Method: deflated
Compression Method: deflated
Name: htmlziptest.html
Compression Method: deflated
完整的 PHP Zip File 参考手册
相关文章
- PHP 教程
- PHP echo 和 print 语句
- PHP 数据类型
- PHP Switch 语句
- PHP 超级全局变量
- PHP $_GET 变量
- PHP array_change_key_case() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill() 函数
- PHP array_key_last() 函数
- PHP array_merge_recursive() 函数
- PHP array_search() 函数
- PHP arsort() 函数
- PHP in_array() 函数
- PHP natsort() 函数
- PHP pos() 函数
- PHP sort() 函数
- PHP cURL 函数
- PHP 5 Directory 函数