当前位置:Gxlcms > PHP教程 > 在线解压zip

在线解压zip

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

在线解压zip
  1. $zipfile = 'test.zip';
  2. $zipdir = './test/';
  3. $zip = new ZipArchive();
  4. $rs = $zip->open($zipfile);
  5. if($rs !== TRUE)
  6. {
  7. die('Error :'. $rs);
  8. }
  9. $zip->extractTo($zipdir);
  10. $zip->close();
  11. //unlink($zipfile);
  12. $array = array();
  13. if ($handle = opendir($zipdir)) {
  14. while (false !== ($file = readdir($handle))) {
  15. if ($file != "." && $file != "..") {
  16. $array[] = $file;
  17. }
  18. }
  19. closedir($handle);
  20. }
  21. sort($array);
  22. var_dump($array);

人气教程排行