php 打包文件代码

该PHP脚本演示了如何使用ZipArchive类将指定文件夹的内容打包成ZIP文件。它首先创建一个ZipArchive实例,然后打开一个新的压缩包。接着,通过递归函数addFolderToZip将文件夹中的所有文件和子文件夹添加到压缩包中,保持原有的文件结构。最后,关闭压缩包。
摘要由CSDN通过智能技术生成

php将文件夹内容打包到指定文件夹

<?php
    // 指定要打包的文件夹和目标位置
    $folderPath = $dir;
    $targetPath = $dir.'/'.$title.".zip";
    // 创建一个ZipArchive实例
    $zip = new ZipArchive();
    // 打开一个新的压缩包
    if ($zip->open($targetPath, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) {
        // 递归添加文件夹中的所有文件和子文件夹
        addFolderToZip($folderPath, $zip, basename($folderPath));
        // 关闭压缩包
        $zip->close();
    }
    /**
     * 递归将文件夹中的所有文件和子文件夹添加到压缩包中
     *
     * @param string $folderPath 文件夹路径
     * @param ZipArchive $zip 压缩包实例
     * @param string $parentFolder 父文件夹路径(用于保持相对路径)
     */
    function addFolderToZip($folderPath, $zip, $parentFolder = '') {
        $handle = opendir($folderPath);
        while (($file = readdir($handle)) !== false) {
            if ($file != '.' && $file != '..') {
                $filePath = $folderPath . '/' . $file;
    
                if (is_file($filePath)) {
                    // 获取相对于父文件夹的路径
                    $relativePath = ltrim($parentFolder . '/' . $file, '/');
    
                    // 将文件添加到压缩包中,并使用相对路径作为在压缩包中的文件名
                    $zip->addFile($filePath, $relativePath);
                } elseif (is_dir($filePath)) {
                    // 递归添加子文件夹中的文件和子文件夹
                    addFolderToZip($filePath, $zip, $parentFolder . '/' . $file);
                }
            }
        }
        closedir($handle);
    }
?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值