PHP 解压缩 Zip 文件

 

  
  
  
  
  1. #PHP解压缩 Zip 文件 
  2. function unzip_file($file$destination){  
  3.     $zip = new ZipArchive() ;  
  4.     if ($zip->open($file) !== TRUE) 
  5.         die ("Could not open archive");  
  6.     $zip->extractTo($destination);  
  7.     $zip->close();  
  8.     echo "Archive extracted to directory";  

 

你可能感兴趣的:(PHP,zip,解压)