从 JSON 数据解码 UTF 字符时出现问题
我发布来自用户的数据,然后转换为 JSON 数据并存储在数据库中。 为了避免转义字符出现问题,我使用了
$jsonData = json_encode($array_json_data,JSON_HEX_APOS|JSON_HEX_QUOT);
转义字符并将其转换为 UXXXX 字符。
现在我在解码这些数据时遇到问题。
例如,我如何打印 U0027 的报价。
I post data from user and then convert to JSON data and store in database.
To avoid problem with escape char, I used
$jsonData = json_encode($array_json_data,JSON_HEX_APOS|JSON_HEX_QUOT);
and it converted escaped char to UXXXX char.
Now I am having problem while decoding these data.
For example how can I print quote from U0027.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 html_entity_decode 将引号转换为其实际的字符串表示形式
use html_entity_decode to convert quotes to its actual string representation