1

我有一个创建 zip 文件的函数。

function zipDoc($docRoot,$archiveName,$testsFolder){
$filename = tempnam($testsFolder, "doc");
$cwd=getcwd();
chdir ($docRoot);


 if (is_writeable($docRoot)){
    echo $docRoot." is writeable";
  }
    $zip = new ZipArchive();
    if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
        exit("cannot open <$filename>\n");
    }
  echo "<br/>";
  if (is_writeable(dirname($filename))){
    echo dirname($filename)." is writeable";
  }
    $folders = array ("_rels","docProps","word");
    // initialize an iterator
    // pass it the directory to be processed
    foreach ($folders as $folder){
        $iterator = new RecursiveIteratorIterator(new    RecursiveDirectoryIterator($folder."/"));
        // iterate over the directory
        // add each file found to the archive
        foreach ($iterator as $key=>$value) {
      if (!is_readable($key)){
           echo  "File ".$key." not readeble";
      }
            $zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key");
        }
    }
    $zip->addFile("[Content_Types].xml");

    // close and save archive
    echo "<br/>";
  if ($zip->close()){
  echo $filename." is Closed";
  }
  else{
  echo $filename." is not closed";
  }
    $newname=str_replace(".tmp",".docx",$filename);
    rename($filename,$newname);
    chdir($cwd);
    return $newname;
}

输出是两个文件夹都是可写的(我也在文件系统上检查过),并且 zip 文件没有关闭!!!任何建议,为什么它不关闭?编辑:close() 方法调用后的文件状态为 3670068,函数 rename 表示该文件正在被另一个进程使用。该文件已创建但有 0kb。

4

1 回答 1

2

好的,我找到了一个解决方案:将文件夹中的文件添加到 zip 文件时,我错过了检查它是否是真实文件,或者只是指向当前或父文件夹的链接,例如:/。或 /.. 在迭代文件时添加此简单检查后,一切正常。

if (substr($key,-1)=="."){
                continue;
            }

希望有人会使用这个。

于 2012-09-05T09:30:01.293 回答