PHP | zip_open()函数
zip_open()函数是PHP中的一个内置函数,用于打开 zip 存档以供阅读。 zip_open()函数创建一个新流并在流和 Zip 存档之间建立连接。文件名作为参数发送给 zip_open()函数,如果成功打开 zip 存档文件,则返回有效的资源处理程序,否则返回错误。
句法:
zip_open( $filename )
参数:此函数接受单个参数$filename ,这是必需的。它用于指定要打开的 zip 资源。
返回值:如果成功打开 zip 存档文件,则返回有效的资源处理程序,否则返回错误。
错误和异常:
- 如果 zip 存档无效,则 zip_open()函数会返回 ER_OPEN 错误。
- 如果 zip 存档为空,则 zip_open()函数会返回 ER_NOZIP 错误。
下面的程序说明了PHP中的 zip_open()函数:
Suppose a zip file article.zip contains the following files:
article.zip
content.xlsx
gfg.pdf
image.jpeg
方案一:
输出:
Zip file opened successfully.
方案二:
");
}
// Closing zip file
zip_close($my_zip);
}
else
echo($my_zip . "file Can not be opened");
?>
输出:
File Name: article/article.zip
File Name: article/content.xlsx
File Name: article/gfg.pdf
File Name: article/image.jpeg
相关文章:
- PHP | zip_close( )函数
- PHP | zip_entry_compressionmethod()函数
- PHP | zip_entry_close()函数
参考: 函数 : PHP 。 PHP