PHP | zip_read()函数
zip_read()函数是PHP中的一个内置函数,用于读取打开的 zip 存档中存在的实体。 zip 资源将被读取并作为参数发送到 zip_read()函数,它在成功时返回包含 zip 存档中文件的资源,如果没有更多条目可读取,则返回 FALSE。
句法:
zip_read( $zip )
参数:此函数接受单个参数$zip ,这是强制性的。用于指定 zip 入口资源。
返回值:如果成功则返回包含 zip 存档中文件的资源,如果没有可读取的条目,则返回 FALSE。
错误和异常:
- 如果 zip 存档无效,则 zip_read()函数会返回 ER_OPEN 错误。
- 如果 zip 存档为空,则 zip_read()函数会返回 ER_NOZIP 错误。
下面的程序说明了PHP中的 zip_read()函数:
方案一:
Suppose a zip file article.zip contains the following files:
article.zip
content.xlsx
gfg.pdf
image.jpeg
");
}
// 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
方案二:
Suppose a zip file article.zip contains the following files and directory: content.xlsx
Directory: img
gfg.pdf
image.jpeg
");
}
// 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
相关文章:
- PHP | zip_entry_close()函数
- PHP | zip_close( )函数
- PHP | zip_entry_compressedsize()函数
参考: 函数 : PHP 。 PHP