将 MySQL ANSI 输入转换为 UTF-8

发布于 2024-11-19 23:37:46 字数 255 浏览 4 评论 0原文

我决定将我的网络应用程序从 ANSI 切换为 UTF-8。在 Notepad++ 中转换硬编码文件的编码(进行转换,不仅仅是更改字符集)并为 UTF-8 设置新的元标记后,我现在需要转换数据库数据。

该数据已以 ANSI 形式输入,但根据 phpMyAdmin 存储为 utf8_general_ci。显然我不能只改变 MySQL stocking 编码,因为它已经是正确的(显然?)。

在网页上,从数据库加载的重音字符(é、à 等)显示为 �。

I've decided to switch my web app from ANSI to UTF-8. After converting the encoding of my hardcoded files in Notepad++ (which does a conversion, not only changing the character set) and setting a new meta tag for UTF-8, I now need to convert my database data.

This data has been inputted on ANSI forms, but is stocked as utf8_general_ci according to phpMyAdmin. Obviously I can't just change the MySQL stocking encoding then, because it's already the right one (apparently?).

On the web pages, my accent characters (é, à, etc.) loaded from the DB appear as �.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

肥爪爪 2024-11-26 23:37:46

我想我从这个博客中找到了解决方案< /a>:

UPDATE `ressources` SET `title` = CONVERT(CONVERT(`title` USING binary) USING utf8);

但是,我在 phpMyAdmin 上收到 0 行受影响。知道为什么吗?

I think I found a solution from this blog:

UPDATE `ressources` SET `title` = CONVERT(CONVERT(`title` USING binary) USING utf8);

However, I get 0 rows affected on phpMyAdmin. Any idea why?

你对谁都笑 2024-11-26 23:37:46

有同样的问题,但是将 sql 连接更改为 utf-8 有帮助:)

mysql_set_charset("utf-8", $mysql_link);

Had the same problems, but changing the sql connection to utf-8 helped :)

mysql_set_charset("utf-8", $mysql_link);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文