欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP解压缩zip文件

程序员文章站 2022-05-09 12:25:59
...
可解压缩zip文件。它有两个参数:压缩文件的路径、目标文件的路径。
  1. function unzip_file($file, $destination) {
  2. // create object
  3. $zip = new ZipArchive() ;
  4. // open archive
  5. if ($zip->open($file) !== TRUE) {
  6. die ('Could not open archive');
  7. }
  8. // extract contents to destination directory
  9. $zip->extractTo($destination);
  10. // close archive
  11. $zip->close();
  12. echo 'Archive extracted to directory';
  13. }
复制代码

解压缩, PHP, zip
相关标签: PHP解压缩zip文件