我已经为此苦苦挣扎了一段时间。
所以我有一个名为 index.php 的简单文件,用 UTF-8 编码。这个文件的内容是:
require_once("dompdf/dompdf_config.inc.php");
$html =
'<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"/><style> body { font-family: verdana; } </style></head><body>'.
'<p>Put your html here, or generate it with your favourite '.
'templating system.</p><p>Č Š Ž č š ž €</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
基本上我试图在PDF中正确显示字母ČŠŽ。Š 和 Ž 工作正常,但我似乎无法让 Č 正确显示,而是我明白了?在我的 PDF 文件中。有任何想法吗?