欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP解压ZIP文件

程序员文章站 2022-04-23 21:41:56
...
  1. function unzip($location,$newLocation)
  2. {
  3. if(exec("unzip $location",$arr)){
  4. mkdir($newLocation);
  5. for($i = 1;$i $file = trim(preg_replace("~inflating: ~","",$arr[$i]));
  6. copy($location.'/'.$file,$newLocation.'/'.$file);
  7. unlink($location.'/'.$file);
  8. }
  9. return TRUE;
  10. }else{
  11. return FALSE;
  12. }
  13. }
复制代码

用法:

  1. unzip('test.zip','unziped/test'); //File would be unzipped in unziped/test folder
  2. ?>
复制代码

PHP, ZIP
相关标签: PHP解压ZIP文件