MySQL 数据库中特殊字符的 json_encode

发布于 2024-11-03 12:12:59 字数 188 浏览 0 评论 0原文

我需要将 MySQL 查询的结果编码为 JSON 格式。

我的数据库采用 utf8_unicode_ci 编码。

特别是,我的数据库中存储了一些特殊字符(例如 €),当我应用 PHP 函数 json_encode 时,这些字符会生成空值。

我该如何解决这个问题?

I need to encode a result from a MySQL query to JSON format.

My database is in the encoding utf8_unicode_ci.

In particular, I have some special chars (for example, €) stored in my database which produce a null value when I apply the PHP function json_encode.

How can I fix this?

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

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

发布评论

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

评论(1

七秒鱼° 2024-11-10 12:12:59

我的盲目猜测是你的MySQL数据库连接没有设置为UTF-8,这导致即使源数据库是UTF-8,也会返回ISO-8859-1字符。

这些字符会破坏 json_encode() 因为它们在 json_encode() 所期望的 UTF-8 字符集中无效。

您可能需要将连接编码设置为 UTF-8。如何执行此操作取决于您使用的库。

mysql_* 系列函数中,一种方法是

mysql_query("SET names utf8;");

MySQL 中的 or > 5.0.7,新

mysql_set_charset("utf8");

My blind guess is that your MySQL database connection is not set to UTF-8, which leads to ISO-8859-1 characters being returned even if the source database is UTF-8.

Those characters will break json_encode() because they are invalid in the UTF-8 character set, which json_encode() expects.

You will probably have to set your connection encoding to UTF-8. How to do that depends on the library you are using.

In the mysql_* family of functions, one way is

mysql_query("SET names utf8;");

or in MySQL > 5.0.7, the new

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