在 Mac 上将 PHP/MySQL/HTML 生成的报告转换为 PDF 格式

发布于 2024-11-25 11:13:48 字数 129 浏览 2 评论 0原文

我正在开发一些结合了 html、php 和 mysql 的页面,以从 mysql 数据库创建报告。我希望能够创建一个按钮将这些报告转换为 PDF 文件以供用户下载。知道如何解决这个问题(我可能会补充说,在 Mac 上)?

谢谢!

I'm working on some pages that combine html, php, and mysql to create reports from a mysql database. I'd like to be able to create a button to convert these reports to PDF files for the user to download. Any idea of how to approach this (on a Mac, I might add)?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

熟人话多 2024-12-02 11:13:48

我在我的项目中经常使用PDFlib。您可以通过编程方式从头开始构建 PDF,或者使用模板 PDF 并在其上添加新内容。缺点是它是一个商业图书馆,许可成本相当高。

I've used PDFlib a lot in my projects. You can build PDFs from the ground up programmatically, or use a template PDF and add new things on top of that. The downside is that it's a commercial library, and the licensing cost is fairly steep.

遥远的绿洲 2024-12-02 11:13:48

您可以使用库直接在服务器端创建 pdf 文件。最推荐用于此类用途的一个是 tcpdf。这将允许您自定义 reposrt 格式,然后即时将其转换为 pdf。

You can use libraries to allow you to create pdf files directly on your server side. The most recommended one for such use is tcpdf. This will allow you to custom format your reposrt and then convert them to pdf on the fly.

泡沫很甜 2024-12-02 11:13:48

我们的一些报告使用 TCPDF。这是非常简单的 PHP 语法,不难理解,但它有一点限制。我也听说过关于 FPDF 的好消息,它似乎还有更多功能,而且也很简单使用。

不幸的是,除了仅使用 PHP,您可能找不到更多的东西。您可以生成 XML/XDP 文件来填充预制的 PDF 文件(我们在一份此类报告上执行此操作),但它引入了额外的步骤,并且很可能出现故障。

We use TCPDF for some of our reports. It's pretty simple PHP syntax, not hard to figure out, but it is a tad limited. I've heard good things about FPDF as well, which seems to have a few more features and is about as easy to use.

Unfortunately, you probably won't find much more than that using just PHP. You could generate XML/XDP files to populate a pre-made PDF file (we do this on one such report), but it introduces extra steps and large possibilities for glitches.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文