(适用于 Windows 的指南。不适用于 Mac 或 Linux)
(图片来源)
在 PHP 中将 HTML 转换为 PDF 的方法不止一种。您可以使用Dompdf或Mpdf;但是,这两个库的执行方式有所不同。
注意:本文中并未包含所有解决方案。
要使用这两个库,您将需要 Composer。
我还在文章中展示了讨论为什么使用 Dompdf 时有时无法打开 PDF 的代码。
Hello World'; // instantiate and use the dompdf class $dompdf = new Dompdf(); $dompdf->loadHtml($content); // (Optional) Setup the paper size and orientation $dompdf->setPaper('A4', 'landscape'); // Render the HTML as PDF $dompdf->render(); ob_end_clean(); // Output the generated PDF to Browser $dompdf->stream(); ?>
使用此代码,即可下载 PDF。
WriteHTML('Hello world! Hi
'); $mpdf->Output(); ?>
使用此代码,当您导航到文件时,PDF 将在浏览器中打开 (示例:localhost/test1.php)
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3