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

php解压缩 Zip 文件的代码

程序员文章站 2022-04-16 10:47:53
...
  1. /**********************
  2. *@file - path to zip file
  3. *@destination - destination directory for unzipped files
  4. */
  5. function unzip_file($file, $destination){
  6. // create object
  7. $zip = new ZipArchive() ;
  8. // open archive
  9. if ($zip->open($file) !== TRUE) {
  10. die ('Could not open archive');
  11. }
  12. // extract contents to destination directory
  13. $zip->extractTo($destination);
  14. // close archive
  15. $zip->close();
  16. echo 'Archive extracted to directory';
  17. }
  18. ?>
复制代码