3

我正在编写一个脚本,将 zip 存档中的文件提取到脚本所在的目录中。

这是我的代码:

$zip = new ZipArchive;
if ($zip->open('latest.zip') === TRUE) {
    $zip->extractTo('.');
    $zip->close();
    unlink('installer.php');
    echo 'it works!';
} else {
    echo 'failed';
}

这工作正常,但有一个问题。拉链包含一个额外的层。(zip/directory/files) 像这个目录/文件一样提取,而不仅仅是文件。

有没有办法去除这个额外的层?

谢谢你的帮助!

乔尔·德雷珀

4

1 回答 1

2

为了防止任何文件被覆盖,您可能需要先将 zip 文件解压缩到一个目录中。我会创建一个具有随机名称的目录,将 zip 解压缩到该目录中,然后检查是否有任何子目录:

<?php

// Generate random unzip directory to prevent overwriting
// This will generate something like "./unzip<RANDOM SEQUENCE>"
$pathname = './unzip'.time().'/';

if (mkdir($pathname) === TRUE) {

  $zip = new ZipArchive;

  if ($zip->open('latest.zip') === TRUE) {

    $zip->extractTo($pathname);

    // Get subdirectories
    $directories = glob($pathname.'*', GLOB_ONLYDIR);

    if ($directories !== FALSE) {

      foreach($directories as $directory) {

        $dir_handle = opendir($directory);

        while(($filename = readdir($dir_handle)) !== FALSE) {

          // Move all subdirectory contents to "./unzip<RANDOM SEQUENCE>/"
          if (rename($filename, $pathname.basename($filename)) === FALSE) {
            print "Error moving file ($filename) \n";
          }
        }
      }
    }

    // Do whatever you like here, for example:
    unlink($pathname.'installer.php');

  }

  // Clean up your mess by deleting "./unzip<RANDOM SEQUENCE>/"
}

我尚未测试此代码,因此,使用风险自负,而且它可能无法在 Windows 系统上按预期工作。此外,请查看我使用的所有功能的文档:

于 2009-05-13T18:29:23.703 回答