php-使用html2pdf在pdf中生成动态行
作者:互联网
我正在使用html2pdf生成pdf.我需要动态生成一些行.
我的代码是..
<?php
require_once("html2pdf.class.php");
$content = '<html><body><table border="0" >
<tr><td align="center" > <h4><b> CHAMPIONSHIP
2015-16</b> </h4></td> </tr>
<tr><td align="center"><h4><b>
</b></h4></td></tr>
<tr><td align="center"><h4><b>DETAILED ENTRY</b>
</h4> </td></tr>
<tr><td><h4><b>Name of Manager :</tr>
</table>
$html2pdf = new HTML2PDF
('L','A4','de',true,'UTF-8',array(10, 10, 10, 10));
$html2pdf->WriteHTML($content);
$html2pdf->Output($filename.'.pdf');
我如何才能在此content.php中添加PHP.如果它仍然无法正常工作,请提出一些其他建议来生成pdf ..谢谢
解决方法:
您不能像基本的PHP一样执行此操作吗?
$your_var = 'what you want';
$content = '<html><body><table border="0">';
$content .= '<html code...>'.$your_var.'</...html code>';
$content .= '</table></body><html>';
标签:pdf,html2pdf,php 来源: https://codeday.me/bug/20191111/2019009.html