Home  >  Article  >  Backend Development  >  zh.wikipedia.org Server-side decompression zip script

zh.wikipedia.org Server-side decompression zip script

WBOY
WBOYOriginal
2016-07-29 08:35:522799browse

复制代码 代码如下:

  
  
  
               fwrite($fp, $buf);  
               fclose($fp);  
               zip_entry_close($zip_entry);  
               echo "unpack successful!n";  
            } else {  
               mkdir($_POST['unpackpath']."/".zip_entry_name($zip_entry), 0777);  
               echo "mkdir successful!n";  
            }  
         }  
         echo "

nn";  
      }  
      zip_close($zip);  
   }  
?>  
  
  
exit();  
}  
?>  
  
  待解压文件  
  解压缩路径  
    
  
  
 

以上就介绍了zh.wikipedia.org 服务器端解压缩zip的脚本,包括了zh.wikipedia.org方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement:
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