PHP zip_entry_compressionmethod() 函數(shù)
PHP zip_entry_compressionmethod() 函數(shù)

定義和用法
The zip_entry_compressionmethod() 函數(shù)返回 zip 檔案項目的壓縮方法。
語法
zip_entry_compressionmethod(zip_entry)
參數(shù) | 描述 |
---|---|
zip_entry | 必需。規(guī)定要讀取的 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

相關(guān)文章
- PHP 教程
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 超級全局變量
- PHP $_GET 變量
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_search() 函數(shù)
- PHP arsort() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP sort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Directory 函數(shù)