如何在 Linux (centos) 上安装带有 PHP 绑定的 wkhtmltopdf

发布于 2024-10-31 10:43:18 字数 119 浏览 0 评论 0原文

如何在 Linux (centos 5+) 上安装带有 PHP 绑定的 wkhtmltopdf?

我的问题与其他问题略有不同,因为我还需要帮助设置 php 绑定。

谢谢杰森

How do I install wkhtmltopdf with the PHP bindings on Linux (centos 5+)?

My question is slightly different to the other questions because I need help setting up the php bindings as well.

Thanks

Jason

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

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

发布评论

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

评论(1

苍白女子 2024-11-07 10:43:19

以下是一种以编程方式调用 wkhtmltopdf 的更简单方法:
http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp

PHP 绑定对于这个应用程序来说确实是大材小用。在大多数情况下,您只需执行它就可以逃脱:

exec("wkhtmltopdf http://example.org/ pdf1.pdf");
$pdf = file_get_contents("pdf1.pdf");

Here is a simpler method to programmatically invoke wkhtmltopdf:
http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp

PHP bindings are really overkill for this applicaiton. In the majority of cases you can get away with just executing it:

exec("wkhtmltopdf http://example.org/ pdf1.pdf");
$pdf = file_get_contents("pdf1.pdf");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文