好的,我需要为拉丁扩展字符创建数据库交互,例如:ŠšĐđČčĆ掞 等。
现在一种方法是将编码设置为 UTF(这导致 DB 数据字符转换为 Å¡Å¡Å¡(使用 latin1_swedish_ci 排序)..
这在获取数据时工作正常,除非我需要限制字段的长度,而不是问题是在 Å¡ 中间发生拆分时,结果字符是 ?? 而不是Ć..
所以一个简单的问题,在 HTML 中使用哪种编码,以及在 DB 中使用哪种排序来保留原始字符。
谢谢你
`
<!doctype html>
<head><meta charset="utf-8">
</head>
<body>
<?php
$dbx = new mysqli('localhost','root','pass','dbtester') or die ('error with connection');
$query = $dbx->prepare ("SELECT id, cont FROM dbtester");
$query->execute();
$query->bind_result($id, $cont);
while($query->fetch()):
echo $id;
echo $cont;
endwhile;
?>
</body>
</html>`