即使文件夹中包含所有权限,ZipArchive :: close()也会返回false

时间:2017-02-05 18:08:41

标签: php filesystems ziparchive

在localhost上一切正常,但是当我尝试让这个脚本在服务器上运行时,我无法做到。我试图更改root和上传的权限(上传的图像在哪里以及应该创建.zip文件的位置)到777(我知道它不安全,但我只是尝试测试,因为它适用于localhost)但是它没有。我也没有收到任何其他错误,并在E_ALL中启用了错误reporintg(php.ini)。目录也通过mkdir()函数在该文件夹中正常创建。

以下是压缩文件夹的功能:

function Zip($source, $destination)
{

    if (!extension_loaded('zip') || !file_exists($source)) {
        return false;
    }

    $zip = new ZipArchive();
    if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
        return false;
    }

    $source = str_replace('\\', '/', realpath($source));

    if (is_dir($source) === true)
    {
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);

        foreach ($files as $file)
        {
            $file = str_replace('\\', '/', $file);

            // Ignore "." and ".." folders
            if( in_array(substr($file, strrpos($file, '/')+1), array('.', '..')) )
                continue;

            $file = realpath($file);

            if (is_dir($file) === true)
            {
                $zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
            }
            else if (is_file($file) === true)
            {
                $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
            }
        }
    }
    else if (is_file($source) === true)
    {
        $zip->addFromString(basename($source), file_get_contents($source));
    }

    return $zip->close();
}

if (Zip($folder.$archiveName."/", $folder.$archiveName.".zip")) {
    echo "Done.";
    rrmdir($folder.$archiveName."/");
} else {
    addError("Error while trying to compress files.");
}

我也尝试写出错误信息:

if ($zip->close()) {
    echo "Done.";
}
else {
    echo $zip->getStatusString();
}

但它没有写出任何东西。

1 个答案:

答案 0 :(得分:1)

问题解决了 - 我调试了本地化问题并意识到zip扩展没有加载。如果您遇到此问题(网站部署在DigitalOcean上)并且您正在使用Debian或衍生产品,只需安装php7.0-zip包:

sudo apt-get install php7.0-zip