gpt4 book ai didi

php - MySQL Unicode Sinhala 数据到 DOMPDF

转载 作者:行者123 更新时间:2023-11-29 02:52:24 26 4
gpt4 key购买 nike

<分区>

我有一个名为“revenue”的 MySQL 表,其中包含 Unicode Sinhala 字体的数据。现在我想使用 DOMPDF 从该数据创建 PDF 输出。我使用了以下代码。

include_once '../dompdf_config.inc.php';

mysql_connect('localhost',"iacc","123");
mysql_select_db("iacc");

$result=mysql_fetch_array(mysql_query("SELECT * FROM revenue"));

$value= mysql_fetch_assoc($result);

$date=date("Y/m/d");

$html = '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
@font-face {
font-family: FM-Malithi;
font-style: normal;
font-weight: 400;
src: url(../font/FM-Malithi.ttf) format("true-type");
}
</style>
</head>

<body>

<table border = "3" >
<tr>
<td bgcolor="#FFCCFF" width="8%" class="fs" scope="col">කාර්යාලය</td>
<td bgcolor="#FFCCFF" width="8%" class="fs" scope="col">මුදල</td>

</tr>

<tr>


<td><input type="text" name="office" value="'.$value['office'].'" style="font-family: FM-Malithi, sans-serif;" /></td>
<td><input type="text" name="amount" value="'.$value['amount'].'" style="font-family: FM-Malithi, sans-serif;" /></td>
</tr>



</table>
</body>
</html>
';
$dompdf = new DOMPDF();
$dompdf->load_html($html,'UTF-8');
$dompdf->render();
$dompdf->stream("dompdf_out.pdf", array("Attachment" => false));
  1. 但它返回??????用于 Unicode sinhala 字段。我不明白我出了什么问题。谁能帮我。谢谢。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com