當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。