阅读(1243)
赞(9)
zip_extract()
2017-06-30 18:36:43 更新
作用:解压 ZIP 文件到指定的目录。
语法: bool zip_extract(string $filename, string $path)
参数:
$filename
ZIP 文件名$path
解压缩目录
返回值:
- 解压缩成功则返回
true
,否则返回false
。
依赖扩展:
示例:
<?php
zip_extract('root.zip', __ROOT__); //还原网站内容