使用数据库中的内容创建 PDF 文件
我想打印 pdf 格式的门票。我已经能够检索票据详细信息,例如客户姓名、订单 ID、订单项目和总账单。我想将此详细信息放入准备打印的 .pdf 文件中。我使用 html 和 php 标签从数据库中检索这些票证详细信息。如何将 .php 文件中回显的所有项目转换为 .pdf?
I would want to print tickets in pdf. I was already able to retrieve the ticket details like customer name, order id, order items, and total bill. I would want to put this details in the .pdf file ready for printing. I'm using html and php tags in retrieving these ticket details from the database. How can I convert to .pdf all items echoed in .php file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 dompdf 之类的库。
You can use a library like dompdf.
我个人更喜欢 TCPDF 从 PHP 创建 PDF。它仍在积极开发中,并且具有许多您在其他库中找不到的功能(尚未)。只需查看他们的示例页面即可了解其使用起来有多么简单。
I personally prefer TCPDF to create PDFs from PHP. It's still actively being developed and has a lot of features you don't find in other libs (yet). Just look at their examples page to see how easy it is to use.
尝试使用
Try to use
您可以准确地找到您需要的东西..
http://www.fpdf.org/en/script/script10.php
这里还给出了许多有用的示例。 FPDF
You can find exactly what you need..
http://www.fpdf.org/en/script/script10.php
Also many useful exaplmes are given here. FPDF