首页 > 后端开发 > php教程 > 如何在 PHP 中递归压缩目录?

如何在 PHP 中递归压缩目录?

DDD
发布: 2024-12-11 03:20:10
原创
968 人浏览过

How to Recursively Zip a Directory in PHP?

如何在 PHP 中[递归]压缩目录

目标是有效地压缩目录,包括其所有子目录和文件,在 PHP 中。

使用 PHP Zip 的方法类

您可以利用 PHP Zip 类来实现此目的。提供的代码提供了一种基本方法,但它仅适用于单个文件,而不适用于目录。

工作代码

要解决此挑战,请考虑以下代码:

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();
}
登录后复制

用法:

调用Zip 函数如下所示:

Zip('/folder/to/compress/', './compressed.zip');
登录后复制

此代码递归地迭代指定的源目录及其子目录,将文件和空目录添加到 zip 存档中。它的操作兼容Windows和Linux平台。

以上是如何在 PHP 中递归压缩目录?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板