最新消息: 新版网站上线了!!!

php打包文件夹类下载

  1. <?php  
  2. require 'zipconverter.php'
  3.  
  4. $zip = new zipConverter(); 
  5. $zip->setRecursiveness(true); //default is false 
  6. $zip->addFolder( 
  7.     array
  8.         './bank'//path of the current file  //linux path 
  9.     ) 
  10. ); 
  11. $zipfile = './files.zip'
  12. $zip->setZipPath($zipfile); //Set your Zip Path with your Zip File's Name 
  13. $result = $zip->createArchive(); 
  14. header('Content-Type: application/zip'); 
  15. header('Content-disposition: attachment; filename='.$zipfile); 
  16. header('Content-Transfer-Encoding: binary'); 
  17. header('Content-Length: ' . filesize($zipfile)); 
  18. readfile($zipfile); 
  19. @unlink($zipfile); 
  20. ?> 

 

转载请注明:谷谷点程序 » php打包文件夹类下载