使用面向对象的网站将 PHP 页面转换为 PDF
我正在尝试将我的购物车项目转为 pdf 文件以创建发票,
我有 url,它以 html/css 形式显示发票,如下所示:
index.php?module=checkout&view=topdf
如果我想获取该页面的内容以在 mPDF 或其他 pdf 库中使用,请使用file_get_contents 或 cURL 它不提供任何内容,因为 url 不是服务器上的实际文件
我该如何解决此问题?我使用模板,不知道如何将当前 php 页面导出到 html 页面
I'm trying to get my shopping cart items to a pdf to create an invoice
I have url which shows the invoice in html/css like this:
index.php?module=checkout&view=topdf
If I want to get the content of that page to use in mPDF or other pdf libraries using file_get_contents or cURL it doesn't give any content because the url is not an actual file on the server
How can I fix this? I work with templates and don't know how can I export the current php page to a html page
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 TCPDF 来做类似的事情。正确设置格式有点麻烦,但一旦掌握了,这确实是一项很好的工作。
http://www.tcpdf.org/examples.php
I used TCPDF for something similar. Getting the formatting right is a bit of a pain but once you've got that it's a really good bit of work.
http://www.tcpdf.org/examples.php