php打包多个文件下载zip(包含云文件)

php打包多个文件下载zip(包含云文件),第1张

php打包多个文件下载zip(包含云文件) php打包多个文件下载zip(包含云文件)

场景:把云服务器文件下载到服务器打包成zip文件,然后下载。下载后对服务器文件进行删除。

准备:

  • php 5.6以上
  • php.ini打开zip扩展
  • *** 作的文件夹权限设置为0777

直接上代码:
封装的方法

    
    public static function addFileToZip($path, $zip)
    {
        $handler = opendir($path); //打开当前文件夹由$path指定。
        while (($filename = readdir($handler)) !== false) {
            if ($filename != "." && $filename != "..") {//文件夹文件名字为'.'和‘..’,不要对他们进行 *** 作
                if (is_dir($path . "/" . $filename)) {// 如果读取的某个对象是文件夹,则递归
                    self::addFileToZip($path . "/" . $filename, $zip);
                } else { //将文件加入zip对象
                    $zip->addFile($path . "/" . $filename);
                }
            }
        }
        @closedir($path);
    }

    
    public static function DownloadCloudFiles($url, $name = false, $path = './temp/')
    {
        $contents = file_get_contents($url);
        $arr      = explode('.', $url);
        $ext      = '.' . end($arr);
        if(!self::mkDirs($path)){
            throw new ServiceException('没有权限创建文件夹');
        }
        if ($name) {
            file_put_contents($path . $name . $ext, $contents);
        } else {
            file_put_contents($path . time() . $ext, $contents);
        }
    }

    
    public static function mkDirs($dir, $mode = 0777)
    {
        if (is_dir($dir) || @mkdir($dir, $mode)) return TRUE;
        if (!self::mkDirs(dirname($dir), $mode)) return FALSE;
        return @mkdir($dir, $mode);
    }

    
    public static function delDir($dir)
    {
        //先删除目录下的文件:
        $dh = opendir($dir);
        while ($file = readdir($dh)) {
            if ($file != "." && $file != "..") {
                $fullPath = $dir . "/" . $file;
                if (!is_dir($fullPath)) {
                    unlink($fullPath);
                } else {
                    self::delDir($fullPath);
                }
            }
        }
        closedir($dh);
        //删除当前文件夹:
        if(rmdir($dir)) {
            return true;
        } else {
            return false;
        }
    }

    
    public static function download($filePath,$fileName){
        $fp=fopen($filePath,"r");
        $file_size=filesize($filePath);
        //下载文件需要用到的头
        Header("Content-type: application/octet-stream");
        Header("Accept-Ranges: bytes");
        Header("Accept-Length:".$file_size);
        Header("Content-Disposition: attachment; filename=".$fileName);
        $buffer=1024;  //设置一次读取的字节数,每读取一次,就输出数据(即返回给浏览器)
        $file_count=0; //读取的总字节数
        //向浏览器返回数据
        while(!feof($fp) && $file_count<$file_size){
            $file_con=fread($fp,$buffer);
            $file_count+=$buffer;
            echo $file_con;
        }
        fclose($fp);

        //下载完成后删除压缩包,临时文件夹
        if($file_count >= $file_size)
        {
            unlink($filePath);
        }
    }

调用:

        self::DownloadCloudFiles('云文件url', '保存文件名字','保存的文件夹路径');
        //压缩包文件名称
        $zipFullName = $zipName.'.zip';
        //压缩文件夹
        $zip=new ZipArchive();
        if($zip->open($zipFullName, ZipArchive::CREATE)=== TRUE) {
            self::addFileToZip('保存的文件夹路径', $zip);
            $zip->close();
        }
        //删除文件夹
        self::delDir('文件夹路径');
        self::download('文件路径','下载文件命名');

分享不易,点赞关注给作者一点点鼓励邏邏,谢谢您!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5443369.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存