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


PHP zip_read()用法及代碼示例


zip_read()函數是PHP中的內置函數,用於讀取打開的zip存檔中存在的實體。將讀取zip資源並將其作為參數發送到zip_read()函數,並且成功返回zip歸檔文件中包含文件的資源,如果沒有更多條目要讀取,則返回FALSE。

用法:

zip_read( $zip )

參數:該函數接受強製的單個參數$zip。用於指定郵政編碼條目資源。


返回值:成功返回zip存檔中包含文件的資源,如果沒有要讀取的條目,則返回FALSE。

錯誤和異常:

  • 如果zip存檔無效,則zip_read()函數將返回ER_OPEN錯誤。
  • 如果zip存檔為空,則zip_read()函數返回ER_NOZIP錯誤。

以下示例程序旨在說明PHP中的zip_read()函數:

程序1:

Suppose a zip file article.zip contains the following files:

article.zip
content.xlsx
gfg.pdf
image.jpeg

<?php 
  
// Opening a zip archive 
$zip_handle = zip_open("article.zip"); 
  
// Reading a zip file 
while($zip_entry = zip_read($zip_handle))  
{  
    $file = zip_entry_name($zip_entry); 
    echo("File Name:" . $file . "<br>"); 
}  
  
// Close the opend zip file 
zip_close($zip_handle); 
?>

輸出:

File Name:article/article.zip
File Name:article/content.xlsx
File Name:article/gfg.pdf
File Name:article/image.jpeg

程序2:

Suppose a zip file article.zip contains the following files and directory:

Directory:img

  • geeksforgeeks.png
  • geeksforgeeks1.png

content.xlsx
gfg.pdf
image.jpeg

<?php 
  
// Opening a zip file 
$zip_handle = zip_open("article.zip"); 
  
if(is_resource($zip_handle)) 
{  
    // Reading a zip entry file 
    while($zip_entry = zip_read($zip_handle))  
    {  
        $file = zip_entry_name($zip_entry); 
        echo("File Name:" . $file . "<br>"); 
    }  
      
    // Close the opened xop file 
    zip_close($zip_handle); 
}  
else
    echo("Zip Archive cannot be opened."); 
?>

輸出:

File Name:article/content.xlsx
File Name:article/gfg.pdf
File Name:article/image.jpeg
File Name:article/img/
File Name:article/img/geeksforgeeks.png
File Name:article/img/geeksforgeeks1.png

相關文章:

參考: http://php.net/manual/en/function.zip-read.php



相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | zip_read() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。