我正在为 tcpdf 编写 html 代码。我在 mysql 中保存了带有 html 标签的描述。如何在 php 中读取它。例如:
$description = "Brand new!!! <br /><br /><br />Huge size";
$html = '<div>'. $description.'</div>';
$pdf->writeHTML($html, true, false, true, false, '');
它按原样显示描述。我需要实现html标签(来新行三遍)
我试过但没有运气
$description = htmlspecialchars($rw['description_demo']);
输出应该像
全新的!!!巨大的尺寸
当我使用echo $html
它时也会给我同样的问题。