2012-06-10 187 views
0

我想下載zip文件中的多個文件使用PHP/codeigniter.This代碼工作在我的本地主機,但在網絡主機的zip開始下載,但文件沒有添加到zip文件。這是我得到的錯誤:php ZipArchive讀取文件錯誤沒有這樣的文件或目錄ziparchive

A PHP Error was encountered 

Severity: Warning 
Message: readfile(Album1.zip): failed to open stream: No such file or directory 
Filename: controllers/download.php 
Line Number: 54 

這是我的代碼:

function _zipFilesAndDownload($file_names,$archive_file_name,$file_path) 
    { 

     $zip = new ZipArchive(); 

     if(file_exists($archive_file_name)){ 
      if ($zip->open($archive_file_name, ZIPARCHIVE::OVERWRITE)!==TRUE) { 
      exit("cannot open <$archive_file_name>\n"); 
      } 
     }else 
     //create the file and throw the error if unsuccessful 
     if ($zip->open($archive_file_name, ZIPARCHIVE::CREATE)!==TRUE) { 
      exit("cannot open <$archive_file_name>\n"); 
     } 
     //add each files of $file_name array to archive 
     foreach($file_names as $files) 
     { 
      $zip->addFile($file_path.$files,$files); 
      //echo $file_path.$files."<br>"; 
     } 
     $zip->close(); 
     //then send the headers to foce download the zip file 

     header("Content-type: application/zip"); 
     header("Content-Disposition: attachment; filename=$archive_file_name"); 
     header("Pragma: no-cache"); 
     header("Expires: 0"); 
     readfile("$archive_file_name"); 

     exit; 

    } 
    function album($albumid){  
      $this->load->model("albums_model"); 
      $this->load->model("songs_model"); 
      $aid = $albumid; 
      $albuminfo = $this->albums_model->getAlbum($aid); 
      $songs = $this->songs_model->getSongNamesAvailableDownload($aid); 
      $file_path=$_SERVER['DOCUMENT_ROOT']. '/demo/albums/'.$albumid.'/'; 
      $archive_file_name = $albuminfo->album_name; 
      $file_names = $songs; 
      $this->_zipFilesAndDownload($file_names,$archive_file_name,$file_path); 
    } 

回答

0

的CodeIgniter爲此提供了一個zip library。處理起來要容易得多,而且可以將代碼降到最低。這也可以解決你的問題。祝你好運!

相關問題