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


PHP zip_entry_compressedsize()用法及代码示例


zip_entry_compressedsize()函数是PHP中的内置函数,用于在zip存档条目中返回压缩文件的大小。它可用于检索目录条目的压缩大小。必须读取的zip条目资源作为参数发送到zip_entry_compressedsize()函数,并在成功时返回压缩的大小。

用法:

int zip_entry_compressedsize ( $zip_entry )

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


返回值:它在成功时返回压缩后的大小。

错误与异常

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

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

程序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"); 
  
$zip_entry = zip_read($zip_handle); 
  
// Reading a zip entry archive  
$file = zip_entry_name($zip_entry); 
   
// Chceking the compressed file size 
// of a zip archive entry  
$file_size = zip_entry_compressedsize($zip_entry); 
  
echo("File Name:" . $file . " (" . $file_size . " Bytes) "); 
  
zip_close($zip_handle); 
?>

输出:

File Name:article/content.xlsx (6341 Bytes)

程序2:

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

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))  
{  
    while($zip_entry = zip_read($zip_handle))  
    {  
        $file = zip_entry_name($zip_entry); 
         
        // Checking the compressed file size of 
        // a zip archive entry  
        $file_size = zip_entry_compressedsize($zip_entry); 
          
        echo "File Name:" . $file . " (" . $file_size 
              . " Bytes) " . "<br>"; 
     }  
       
   zip_close($zip_handle); 
}  
else
   echo("Zip archive cannot be opened."); 
?>

输出:

File Name:article/content.xlsx (6341 Bytes) 
File Name:article/gfg.pdf (603195 Bytes) 
File Name:article/image.jpeg (155736 Bytes) 

相关文章:

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



相关用法


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