可以在wkhtmltopdf类中使用php函数吗?
我使用wkhtmltopdf类生成pdf。我能够将整个HTML生成为pdf文件,但我想根据需要进行自定义。现在我正在使用以下代码:
require __DIR__ . '/vendor/autoload.php';
use mikehaertl\wkhtmlto\Pdf;`
$pdf = new Pdf;
$pdf->addPage('http://localhost/ckm/campaign/create-campaign');
$pdf->send();
但不是这样,我想使用下面的代码,现在提供任何输出。
$pdf = new Pdf;
$pdf->addPage('Voucher'.' : '.$data['voucher_code']);
$pdf->addPage(content_formatter($description->post_content));
$pdf->send();
请建议我的解决方案...... 谢谢。