How to install wkhtmltopdf with PHP bindings on Linux (centos)

How to install wkhtmltopdf with PHP bindings on Linux (centos 5+)?

My question is slightly different from other questions because I need help setting up php bindings.

thank

Jason

0
linux php wkhtmltopdf
Apr 12 '11 at 4:13
source share
1 answer

Here is an easier way to programmatically call wkhtmltopdf:
http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp

The PHP binding is really too big for this application. In most cases, you can leave just by doing it:

exec("wkhtmltopdf http://example.org/ pdf1.pdf"); $pdf = file_get_contents("pdf1.pdf"); 
+2
Apr 12 2018-11-11T00:
source share
— -



All Articles