码迷,mamicode.com
首页 > Web开发 > 详细

php导出pdf

时间:2017-03-03 20:47:58      阅读:391      评论:0      收藏:0      [点我收藏+]

标签:exit   字体   fetch   导出   get   中文乱码   pre   his   new   

public function get($html){
        $content=$this->fetch($html);
        Vendor(‘mpdf.mpdf‘);
        //实例化mpdf
        $mpdf=new mPDF(‘UTF-8‘,‘A4‘,‘‘,‘宋体‘,20,20);

        //设置字体,解决中文乱码
        $mpdf->useAdobeCJK = true;
        $mpdf->SetAutoFont(AUTOFONT_ALL);
        
        $mpdf->writeHTML($content);
        $mpdf->Output(iconv("utf-8","gb2312","aaa.pdf"),true);
        //$mpdf->Output();
        exit;
    }

  

网上找的代码,拿来借鉴,发在博客里,以备查看

php导出pdf

标签:exit   字体   fetch   导出   get   中文乱码   pre   his   new   

原文地址:http://www.cnblogs.com/wyynts/p/6498201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!