使用 PHP 打印多个 PDF 并更新数据库
基本上我只是想知道这是否可能以及朝着正确的方向推动。
管理区域将包含需要打印的订单列表。我需要将每份订单写成 pdf 格式并打印——我可以自动一个接一个地完成这些操作吗?其次,我可以每次更新数据库记录来表示它已自动打印吗?
任何帮助将不胜感激,之前没有处理过打印到 PDF,我看过 dompdf 但很高兴使用任何建议。
Basically I just want to know if this is possible and a push in the right direction.
An admin area will have a list of orders that need printing. I’ll need to write each order as a pdf and print – can I do these all one after the other automatically? And secondly can I update the database record each time to say it has been printed, automatically?
Any help would be much appreciated, haven't dealt with printing to PDF before, I've looked at dompdf but happy to use any recommendations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的 - 您需要一个任务(通常是 cron 作业)来检查数据库中作业的“队列”,然后运行 php 循环将每个任务打印到
您应该查看的 pdf http://php.net/manual/en/book.pdf.php
作业完成后,您可以更新您的数据库
This is possable - you would need a task (typically a cron job) to check the "queue" of jobs in the DB and then run a php loop to print each task to a pdf
you should review http://php.net/manual/en/book.pdf.php
after the job completes you could update your database