PHP导出pdf文件_dompdf
生活随笔
收集整理的這篇文章主要介紹了
PHP导出pdf文件_dompdf
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為什么80%的碼農都做不了架構師?>>> ??
?由于項目用到的導出pdf的html樣式比較復雜,處于對pdf格式的考慮,放棄了fpdf.php
dompdf下載地址:http://code.google.com/p/dompdf/downloads/list?包括官方導出pdf的例子
設置配置文件 dompdf_config.inc.php ?? 288?def("DOMPDF_ENABLE_REMOTE", true);
require(SITE_PATH.'/libs/dompdf/dompdf_config.inc.php');$content = $this->view->fetch('sample*');$contents = stripslashes($content);$html = $this->replace_html_tag($contents,'script',true);$dompdf = new DOMPDF();$dompdf->load_html($html);$dompdf->set_paper('letter', 'portrait');$dompdf->render();$dompdf->stream("sample.pdf", array("Attachment" => true));exit(0);???? //刪除指定的HTML標簽及其中內容 function replace_html_tag($string, $tagname, $clear = false){$re = $clear ? '' : '\1';$sc = '/<' . $tagname . '(?:\s[^>]*)?>([\s\S]*?)?<\/' . $tagname . '>/i';return preg_replace($sc, $re, $string);} // 去掉 style 及包含內容 $string = replace_html_tag($string, 'style', true);?轉載于:https://my.oschina.net/hooqee/blog/89188
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的PHP导出pdf文件_dompdf的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IE下的拖拽Drag事件和示例
- 下一篇: php用Simple Excel导出xl