在PHP中使用wkhtmltopdf可以通過以下方法:
exec('wkhtmltopdf input.html output.pdf');
shell_exec('wkhtmltopdf input.html output.pdf');
#!/bin/bash
wkhtmltopdf input.html output.pdf
然后在PHP中執行該腳本文件:
shell_exec('./convert.sh');
無論使用哪種方法,都需要確保服務器上已安裝了wkhtmltopdf,并且PHP有權限執行該命令。