美文网首页
使用第三方包 dompdf 将网页生成pdf 文件

使用第三方包 dompdf 将网页生成pdf 文件

作者: 骑蚂蚁上高速_jun | 来源:发表于2020-01-31 20:07 被阅读0次
    1. 安装 dompdf
    composer require dompdf/dompdf
    
    1. 使用
    $header = "<style>* {font-family: \"simsun\"}</style>";
    $html = $header.$result["content"];
    $pdfManager = new Dompdf();
    $pdfManager->loadHtml($html);
    $pdfManager->render();
    $pdfManager->stream();
    

    相关文章

      网友评论

          本文标题:使用第三方包 dompdf 将网页生成pdf 文件

          本文链接:https://www.haomeiwen.com/subject/uhcnthtx.html