亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

php ZipArchive實現(xiàn)多文件打包下載實例

 更新時間:2019年10月31日 15:44:27   作者:赤驥  
在本篇文章里我們給各位整理了關(guān)于php ZipArchive實現(xiàn)多文件打包下載實例以及相關(guān)代碼,需要的朋友們可以學(xué)習(xí)下。

實例代碼:

public function downLoad($dataUrl,$saveName)
  {
    $datalist = [
      ROOT_PATH.'/public/introduce/110.docx',
      ROOT_PATH.'/public/upfile/110.zip'
    ];
//    print_r($datalist);die;
    $filename = ROOT_PATH.'\public\/'.$saveName.'.zip';
    if(file_exists($filename)){
      unlink($filename);
    }

    $zip = new \ZipArchive();
    if ($zip->open($filename,\ZipArchive::CREATE)!== true){
      exit('無法打開文件,或者文件創(chuàng)建失敗');
    }

    foreach ($dataUrl as $index => $item) {
      if (DIRECTORY_SEPARATOR=='\\'){
        $item = str_replace('/',DIRECTORY_SEPARATOR,$item);
        $filename = str_replace('/',DIRECTORY_SEPARATOR,$filename);
      }
//      var_dump($item);
//      var_dump(file_exists($item));die;
      if (file_exists($item)){
        $zip->addFile($item,basename($item));
      }
    }

    $zip->close();
    if(!file_exists($filename)){
      exit("無法找到文件"); //即使創(chuàng)建,仍有可能失敗
    }
    header('Content-Type: application/zip');
    header('Content-disposition: attachment; filename='.basename($filename));
    header('Content-Length: ' . filesize($filename));
    @readfile($filename);
     @unlink ( $filename );
}

注意:里面的路徑全部用絕對路徑,不然會找不到文件

附贈其他操作:

解壓縮zip文件

public function unzip_file($file, $dir){ 

    // 實例化對象 

    $zip = new ZipArchive() ; 

    //打開zip文檔,如果打開失敗返回提示信息 

    if ($zip->open($file) !== TRUE) { 

     die ("Could not open archive"); 

    } 

    //將壓縮文件解壓到指定的目錄下 

    $zip->extractTo($dir); 

    //關(guān)閉zip文檔 

    $zip->close(); 

  }

獲取解壓文件目錄

public function loopFun($dir) 

  { 

    $handle = opendir($dir.".");

    //定義用于存儲文件名的數(shù)組

    $array_file = array();

    while (false !== ($file = readdir($handle)))

    {

      if ($file != "." && $file != "..") {

        $array_file[] = $dir.'/'.$file; //輸出文件名

      }

    }

    closedir($handle);

    return $array_file;

    //print_r($array_file);

  }

大家可以在本地測試下,感謝大家的學(xué)習(xí)和對腳本之家的支持。

相關(guān)文章

最新評論