当前位置:  开发笔记 > 编程语言 > 正文

php将页面转换为带有id的pdf加载

如何解决《php将页面转换为带有id的pdf加载》经验,为你挑选了0个好方法。

我有来自MySQL DB的动态加载,我的页面URL是http:// localhost/far/contractview?ID = 137.当我尝试将此页面转换为PDF时,我遇到了一些错误,我不知道如何处理,只需按一下按钮即可将此页面转换为PDF.

我在下面提供了我的代码.我在用mpdf.

debug = true;
//$mpdf->allow_output_buffering = true;
//$mpdf->SetHeader('|Your Header here|');
//$mpdf->setFooter('{PAGENO}');// Giving page number to your footer.
$mpdf->useOnlyCoreFonts = true;    // false is default
$mpdf->SetDisplayMode('fullpage');
// Buffer the following html with PHP so we can store it to a variable later
ob_start();
?>

WriteHTML($html);
//$mpdf->SetProtection(array(), 'user', 'password'); uncomment to protect your pdf page with password.
$mpdf->Output();
exit;
?>

提前致谢.

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有