我正在使用wordpress,我想将我的帖子转换为pdf,就像在this website中一样(点击打印图标看看我的意思)。我希望在website中做类似的事情。你能和我分享一下如何做到这一点吗?感谢。
答案 0 :(得分:0)
在这里试试这个wordpress插件(它可能就是你要找的)
答案 1 :(得分:0)
我使用mPDF(www.mpdf1.com)如下:
(1)使用ob_start()
缓冲输出(2)将所有输出收集到变量$ content = ob_getcontents()
中(3)使用ob_flush()
刷新缓冲区以在屏幕上显示内容(4)将PDF创建为文件
这样的事情:
// Buffer the output so I can collect the html
ob_start();
// Do the display bit here
....
// Collect into a variable and flush it out
$content = ob_get_contents();
ob_flush();
// Make a PDF
include "MPDF/mpdf.php";
$mpdf = new mPDF();
// Add some CSS to style content
$content = "<style>".file_get_contents("style.css").'</style>'.$content;
// Create PDF and save as file
$mpdf -> WriteHTML($content);
$mpdf -> Output('PDF/pdffile.pdf', 'F');
答案 2 :(得分:0)