我已经完成了一种将 db 表中的内容写入 pdf 文件的方法。
但是表中的一个字段包含带有html标签的内容。即“<p>这是语句<br>下一条语句</p>”这样的。
我想将此内容写入 html 格式的 pdf 文件。我不想剥离标签。
内容应为 html 格式的 pdf 文件。
例如如果表中包含“<strong>”语句</strong>”我想在pdf中这样写
陈述
有没有为此的任何php函数。
$pdf=new FPDF();
$pdf->AddPage(); //Create new PDF page
$pdf->SetFont('Arial','B',10); //Set the base font & size
$pdf->Ln();//Creates a new line, blank here
$pdf->Cell(10,5,"");
$pdf->Cell(10,5,"");
$pdf->SetFont('Arial','B',12);
$pdf->Ln();
$pdf->Cell(20,10,$title);
$pdf->SetFont('Arial','',6);
$pdf->Ln();
$pdf->Cell(20,11, $content);
$pdf->Ln();
$pdf->Ln();
$pdf->Cell(1150,130,"Date:".date('d-m-y'));
$separator = md5(time());
$file_name='Certificate'.$type_id.'.pdf';
// carriage return type (we use a PHP end of line constant)
$eol = PHP_EOL;
$pdf->Output($file_name,'D');