如何显示pdf或打印pdf

时间:2017-08-03 02:41:20

标签: php pdf phpmyadmin xampp

如何显示pdf并使用php或html打印?我想使用来自phpmyadmin的数据来制作PDF格式的数据

1 个答案:

答案 0 :(得分:0)

我会说使用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();