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

时间:2011-04-12 04:13:37

标签: php linux wkhtmltopdf

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

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

由于

杰森

1 个答案:

答案 0 :(得分:2)

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

PHP绑定对于此应用程序来说真的太过分了。在大多数情况下,只需执行它就可以逃脱:

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