首頁  >  文章  >  後端開發  >  PHP解壓縮ZIP檔案

PHP解壓縮ZIP檔案

WBOY
WBOY原創
2016-07-25 08:42:46948瀏覽
  1. function unzip($location,$newLocation)
  2. {
  3. if(exec("unzip $location",$arr)){
  4. mkdir($newLocation);
  5. for($i = 1;$i< count($arr);$i ){
  6. $file = trim(preg_replace("~inflating: ~","",$arr[$i]));
  7. copy($location.'/'.$file,$newLocation.'/'.$file);
  8. unlink($location.'/'.$file);
  9. }
  10. return TRUE;
  11. }else{
  12. return FALSE;
  13. }
  14. }
复制代码

用法:

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

PHP、ZIP


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn