当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP zip_entry_compressionmethod()用法及代码示例


zip_entry_compressionmethod()函数是PHP中的内置函数,用于从zip归档条目中返回文件或目录的压缩方法。必须读取的zip条目资源作为参数发送到zip_entry_compressionmethod()函数,并在成功时返回压缩方法。

压缩方法有以下七种类型:

  • 未压缩
  • 压缩
  • 放气
  • 减少(1至4)
  • 代币化
  • 内爆
  • BZIP2

压缩了zip存档文件的默认压缩方法。


用法:

string zip_entry_compressionmethod( $zip_entry )

参数:该函数接受单个参数$zip_entry。它是必填参数,用于指定zip条目资源。

返回值:成功返回指定的zip归档条目的文件或目录的压缩方法,否则返回PHP警告。

错误与异常

  • zip_entry_compressionmethod()仅在成功时返回文件或目录的压缩方法,否则将返回PHP警告。
  • 如果zip存档无效,则zip_entry_compressionmethod()函数将返回ER_OPEN错误。
  • 如果zip存档为空,则zip_entry_compressionmethod()函数返回ER_NOZIP错误。

以下示例程序旨在说明PHP中的zip_entry_compressionmethod()函数:

程序1:

Suppose a zip file article.zip contains the following file:
content.xlsx

<?php 
  
// Opening a zip archive 
$zip_handle = zip_open("C:/xampp/htdocs/article.zip"); 
   
// Reading a zip archive 
$zip_entry = zip_read($zip_handle);  
$file = zip_entry_name($zip_entry); 
   
// Checking the  compression method 
$comp_type = zip_entry_compressionmethod($zip_entry); 
echo("File Name:" . $file . "=>" . $comp_type); 
   
// Closing the zip archive 
zip_close($zip_handle); 
?>

输出:

File Name:article/content.xlsx => deflated

程序2:

Suppose a zip file article.zip contains the following file:
art.zip
content.xlsx
gfg.pdf
image.jpeg

<?php 
  
// Opening a zip archive 
$zip_handle = zip_open("C:/xampp/htdocs/article.zip"); 
  
if(is_resource($zip_handle)) 
{  
    // Reading a zip archive 
    while($zip_entry = zip_read($zip_handle))  
    {  
        $file = zip_entry_name($zip_entry); 
          
        // Checking the compression method 
        $comp_type = zip_entry_compressionmethod($zip_entry); 
          
        echo("File Name:" . $file . "  =>  " . $comp_type . "<br>"); 
   }  
     
    // Closing the zip archive 
    zip_close($zip_handle); 
}  
else
    echo("Zip archive cannot be opened."); 
   
?>

输出:

File Name:article/art.zip => stored
File Name:article/content.xlsx => deflated
File Name:article/gfg.pdf => deflated
File Name:article/image.jpeg => deflated

相关文章:

参考: http://php.net/manual/en/function.zip-entry-compressionmethod.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | zip_entry_compressionmethod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。