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
相关用法
- PHP exp()用法及代码示例
- d3.js d3.lab()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | zip_read() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。