Why does the PHP json_encode function convert UTF-8 strings to hexadecimal entities?(为什么PHP json_encode 函数会将UTF-8 字符串转换为十六进制实体?)
问题描述
我有一个处理多种语言的 PHP 脚本.不幸的是,每当我尝试使用 json_encode
时,任何 Unicode 输出都会转换为十六进制实体.这是预期的行为吗?有没有办法将输出转换为UTF-8字符?
I have a PHP script that deals with a wide variety of languages. Unfortunately, whenever I try to use json_encode
, any Unicode output is converted to hexadecimal entities. Is this the expected behavior? Is there any way to convert the output to UTF-8 characters?
以下是我所看到的示例:
Here's an example of what I'm seeing:
输入
echo $text;
输出
База данни грешка.
输入
json_encode($text);
输出
"u0411u0430u0437u0430 u0434u0430u043du043du0438 u0433u0440u0435u0448u043au0430."
推荐答案
自 PHP/5.4.0 起,有一个名为 JSON_UNESCAPED_UNICODE
的选项.看看:
Since PHP/5.4.0, there is an option called JSON_UNESCAPED_UNICODE
. Check it out:
https://php.net/function.json-encode
因此您应该尝试:
json_encode( $text, JSON_UNESCAPED_UNICODE );
这篇关于为什么PHP json_encode 函数会将UTF-8 字符串转换为十六进制实体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么PHP json_encode 函数会将UTF-8 字符串转换为十六进制实体?
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01