如何在Linux(centos 5 +)上安装带有PHP绑定的wkhtmltopdf?
我的问题与其他问题略有不同,因为我需要帮助设置php绑定。
由于
杰森
答案 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");