php code to decompress Zip files

WBOY
Release: 2016-07-25 09:03:13
Original
1290 people have browsed it
  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. ?>
复制代码


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!