4

ファイルの配列を1つのzipファイルに書き込む単純な関数が必要です。オンラインチュートリアルからいくつかのコードを見つけて少し変更しましたが、動作させることができないようです。zipファイルが作成されますが、解凍しようとするとエラーが発生します。

Windows cannot complete the extraction.
The Compressed (zipped) Folder '...' is invalid.

これが私が使っているコードです:

public function create_zip($files = array(),$destination = '',$overwrite = false) {
      //if the zip file already exists and overwrite is false, return false
      if(file_exists($destination) && !$overwrite) { return 'file exists'; }

      $valid_files = array();
      if(is_array($files)) {
        //cycle through each file
        foreach($files as $file) {
          //make sure the file exists
          if(file_exists($file)) {
            $valid_files[] = $file;
          }
        }
      }
      Zend_Debug::dump($valid_files);

      if(count($valid_files)) {
        //create the archive
        $zip = new ZipArchive();
        if($zip->open($destination, ZIPARCHIVE::CREATE) !== true) {
          return 'could not open zip: '.$destination;
        }
        //add the files
        foreach($valid_files as $file) {
          $zip->addFile($file);
        }
        //debug
        Zend_Debug::dump($zip->numFiles);
        Zend_Debug::dump($zip->status);

        $zip->close();

        //check to make sure the file exists
        return file_exists($destination);
      } else  {
        return 'no valid failes'. count($valid_files);
      }
}

デバッグステートメントは、以下を出力します。

 For $valid_files - array of one file name (full path to file)
 For $zip->numFiles - 1
 For $zip->status - 0
 The function returns true.

私が間違っていることについて何か考えはありますか?

4

1 に答える 1

4

ファイル名の前にスラッシュを追加する必要があります。

ここで答えが見つかりました:zipArchive addFile()を使用しても画像はzipに追加されません

于 2012-06-01T17:41:25.683 に答える