php中如何处理特殊字符
我使用 php 加载一个 UTF-8 编码的 json 文件,如下所示:
$string = file_get_contents("_locales/de/messages.json");
当我 echo $string
时,我得到的字符
delete_context":{ "message": "Löschen" }
应该是 Löschen。
知道如何解决这个问题吗?
I load a UTF-8 encoded json file using php like this:
$string = file_get_contents("_locales/de/messages.json");
When I echo $string
I get chars like
delete_context":{ "message": "Löschen" }
where it should be Löschen.
Any idea how to fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能的解决方案:
php:file_get_contents编码问题
Possible resolution:
php: file_get_contents encoding problem