zip_entry_name()函数是PHP中的内置函数,用于返回zip归档条目的名称。将读取zip条目资源并将其作为参数发送到zip_entry_name()函数,并且它将在成功时返回zip条目存档的名称。
用法:
string zip_entry_name( $zip_entry )
参数:该函数接受强制性的单个参数$zip_entry。用于指定邮政编码条目资源。
返回值:它返回成功时的zip归档条目的名称。
错误和异常:
- zip_entry_name()仅在成功时返回zip条目归档文件的名称,否则将返回PHP警告。
- 如果zip存档无效,则zip_entry_name()函数将返回ER_OPEN错误。
- 如果zip存档为空,则zip_entry_name()函数返回ER_NOZIP错误。
以下示例程序旨在说明PHP中的zip_entry_name()函数:
程序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);
// Reading the name of a zip entry archive
$file = zip_entry_name($zip_entry);
echo("File Name:" . $file);
// Closing the zip archive
zip_close($zip_handle);
?>
输出:
File Name:article/content.xlsx
程序2:
Suppose a zip file article.zip contains 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 name of a zip archive entry
$file_name = zip_entry_name($zip_entry);
echo("File Name:" . $file_name . "<br>");
}
// closing the zip archive
zip_close($zip_handle);
}
else
echo("Zip archive cannot be read.");
?>
输出:
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
相关文章:
- PHP - zip_read()用法及代码示例
- PHP - zip_close( )用法及代码示例
- PHP - zip_entry_close()用法及代码示例
- PHP - zip_entry_compressedsize()用法及代码示例
参考: http://php.net/manual/en/function.zip-entry-name.php
相关用法
- d3.js d3.lab()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | zip_entry_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。