PHP | zip_entry_name()函数
zip_entry_name()函数是PHP中的一个内置函数,用于返回 zip 存档条目的名称。将读取 zip 条目资源并将其作为参数发送到 zip_entry_name()函数,并在成功时返回 zip 条目存档的名称。
句法:
string zip_entry_name( $zip_entry )
参数:此函数接受单个参数$zip_entry这是强制性的。用于指定 zip 入口资源。
返回值:它在成功时返回 zip 存档条目的名称。
错误和异常:
- zip_entry_name() 仅在成功时返回 zip 条目存档的名称,否则返回PHP警告。
- 如果 zip 存档无效,则 zip_entry_name()函数会返回 ER_OPEN 错误。
- 如果 zip 存档为空,则 zip_entry_name()函数会返回 ER_NOZIP 错误。
下面的程序说明了PHP中的 zip_entry_name()函数:
方案一:
Suppose a zip file article.zip contains the following file:
content.xlsx
输出:
File Name: article/content.xlsx
方案二:
Suppose a zip file article.zip contains following files and directories: content.xlsx
Directory: img
gfg.pdf
image.jpeg
");
}
// 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()函数
参考: 函数 : PHP 。 PHP