php导出文件压缩包 ZipArchive

php教程评论1.6K views阅读模式

这篇文章主要介绍了关于php导出文件压缩包 ZipArchive,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

    //写入xls文件
    function pro_xls($sContent,$_userid,$sname){
        //生成xls文件
        $exportdir =PHP_ROOT.'data/export/'.$_userid.'/';        
        if(!is_dir($exportdir)) mkdir($exportdir);        
        $elsfile=$exportdir.$sname.'.xls';        
        $file = fopen($elsfile, 'w');
        fwrite($file, $sContent);
        fclose($file);        
        return  $elsfile;

    }    //zip
    function pro_zip($aFiles,$_userid,$sname){
        //zip
        $exportdir =PHP_ROOT.'data/export/'.$_userid.'/';        
        $zipname=$sname.'.zip';        
        $zip_file_path=$exportdir.$zipname;        
        $oZip = new ZipArchive();        
        if($oZip->open($zip_file_path,ZipArchive::CREATE)==TRUE){        
        foreach ($aFiles as $file){            
        $oZip->addFile($exportdir.$file, $file);
        }        
        $oZip->close();        //下载链接
        $downfile="http://".$_SERVER['HTTP_HOST'].'/data/export/'.$_userid.'/'.$zipname;        
        return $downfile;
        }        
        return false;


    }    //csv用  
    function pro_zip_csv($info,$sContent,$_userid,$sname){
        $exportdir =PHP_ROOT.'data/export/'.$_userid.'/';        
        if(!is_dir($exportdir)) mkdir($exportdir);        //生成csv文件
        $elsfile=$exportdir.$sname.'.csv';        
        $fp = fopen($elsfile, 'w');         //Windows下使用BOM来标记文本文件的编码方式 
        fwrite($fp,chr(0xEF).chr(0xBB).chr(0xBF)); 
        foreach ($info as $line) { 
            fputcsv($fp, $line);
        }
        fclose($fp);           

        //zip
        $zipname=time().'.zip';        
        $zip_file_path=$exportdir.$zipname;        
        $oZip = new ZipArchive();        
        if($oZip->open($zip_file_path,ZipArchive::CREATE)==TRUE){            
        $oZip->addFile($elsfile, $sname.'.csv');            
        $oZip->close();            //下载链接
            $downfile="http://".$_SERVER['HTTP_HOST'].'/data/export/'.$_userid.'/'.$zipname;            
            return $downfile;
        }        
        return false;
    }

以上就是php导出文件压缩包 ZipArchive的详细内容,更多请关注php教程网其它相关文章!

企鹅博客
  • 本文由 发表于 2020年7月6日 11:07:57
  • 转载请务必保留本文链接:https://www.qieseo.com/249996.html

发表评论