如何显示 pdf 或打印 pdf [关闭]
Posted
技术标签:
【中文标题】如何显示 pdf 或打印 pdf [关闭]【英文标题】:How to display pdf or print pdf [closed] 【发布时间】:2018-01-10 10:50:51 【问题描述】:如何使用php或html显示pdf和打印?我想使用来自 phpmyadmin 的数据来制作 pdf 格式的数据
【问题讨论】:
【参考方案1】:我会说使用 dompdf 它获取 html 文件并以 pdf 格式打印,您可以选择用户查看或下载它,您可以将 php 变量放在 html 文件中。 github链接 https://github.com/dompdf/dompdf
文档中的示例
// reference the Dompdf namespace
use Dompdf\Dompdf;
// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->loadHtml('hello world');
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
$dompdf->stream();
【讨论】:
以上是关于如何显示 pdf 或打印 pdf [关闭]的主要内容,如果未能解决你的问题,请参考以下文章