当前位置:Gxlcms > PHP教程 > php解压缩Zip文件的代码

php解压缩Zip文件的代码

时间:2021-07-01 10:21:17 帮助过:25人阅读

  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. ?>

人气教程排行