gpt4 book ai didi

php - 从 utf8_unicode_ci Mysql 表打印文本时出现错误字符

转载 作者:行者123 更新时间:2023-11-30 23:59:03 26 4
gpt4 key购买 nike

我使用 mysql_query("SET NAMES 'utf8'");

将文本插入/更新到 utf8_unicode_ci 编码表

它在 mysql 表中显示为“ş,ğ,ü”。但是当我用 PHP 打印它时,

它看起来像“� ??”在页面上。

我尝试添加

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 

但没用。

如何在页面上正确显示 unicode 字符?

谢谢

最佳答案

你应该使用:

mysql_set_charset('utf8');

代替

mysql_query("SET NAMES 'utf8'")

我也建议在 PHP 中设置 header

header('Content-Type: text/html; charset=UTF-8');

关于php - 从 utf8_unicode_ci Mysql 表打印文本时出现错误字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9703536/

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