当您使用DOMPDF在服务器上保存PDF时,如果您想在服务器上查找/打开PDF,那么您遇到过一个问题吗?
我要输出以下内容。
//Download PDF
$dompdf->stream("Invoice: ".$row['number'].".pdf", array("Attachment"
=> true));
//save the pdf file on the server
file_put_contents('uploads/'.$row['number'].'.pdf', $dompdf-
>output());
用于样式设置的
:*{ font-family: DejaVu Sans;}
@font-face {
font-family: "DejaVuSans";
font-style: normal;
font-weight: normal;
src: url('fonts/DejaVuSans.ttf') format('truetype');
}