zip_entry_filesize()函数是PHP中的内置函数,用于在压缩前返回zip存档条目的原始文件大小。将读取zip条目资源并将其作为参数发送给zip_entry_filesize()函数,并且在成功时它将返回以字节为单位的值。
用法:
int zip_entry_filesize( $zip_entry )
参数:该函数接受强制性的单个参数$zip_entry。它是指定邮政编码条目资源的参数。
返回值:成功时返回字节值。
错误和异常:
- zip_entry_filesize()仅在成功压缩之前返回文件的大小(以字节为单位),否则返回PHP警告。
- 如果zip存档无效,则zip_entry_filesize()函数将返回ER_OPEN错误。
- 如果zip存档为空,则zip_entry_filesize()函数返回ER_NOZIP错误。
以下示例程序旨在说明PHP中的zip_entry_filesize()函数:
程序1:
Suppose a zip file article.zip contains the following file:
content.xlsx
<?php
// Opening a zip file
$zip_handle = zip_open("C:/xampp/htdocs/article.zip");
// Reading a zip entry archive
$zip_entry = zip_read($zip_handle);
$file = zip_entry_name($zip_entry);
// Reading file size before compression
$size = zip_entry_filesize($zip_entry);
// Displaying the file ans its size
echo("File Name: " . $file . "<br>Size:" . $size . " Bytes");
zip_close($zip_handle);
?>
输出:
File Name: article/content.xlsx Size: 9420 Bytes
程序2:
Suppose a zip file article.zip contains the following files and directories:
Directory: img
- geeksforgeeks.png
- geeksforgeeks1.png
content.xlsx
gfg.pdf
image.jpeg
<?php
// Opening a zip file
$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 file size of a zip
// archive entry before compression
$size = zip_entry_filesize($zip_entry);
echo("File Name: " . $file . "<br>Size: " . $size . " Bytes<br>");
}
// closing the zip archive
zip_close($zip_handle);
}
else
echo("Zip archive cannot be read.");
?>
输出:
File Name: article/content.xlsx Size: 9420 Bytes File Name: article/gfg.pdf Size: 621936 Bytes File Name: article/image.jpeg Size: 159263 Bytes File Name: article/img/ Size: 0 Bytes File Name: article/img/geeksforgeeks.png Size: 751 Bytes File Name: article/img/geeksforgeeks1.png Size: 337 Bytes
参考: http://php.net/manual/en/function.zip-entry-filesize.php
相关用法
- p5.js sq()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP next()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | zip_entry_filesize() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。