Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用户名的 FB Graph 请求中收到 unicode 字符。如何在 iOS 应用程序中将其转换为英文?PHP中也有类似的东西吗?
最好的答案是用他的语言显示他的名字。
我想到的最好的转换是使用json_decode():
json_decode()
$name = '\u9648\u73ab\u7af9'; echo json_decode('"'.$name.'"'); // ouputs: 陈玫竹
我建议json_decode()是因为它\uxxxx直接支持语法和其他 unicode 或utf-8字符。
\uxxxx
utf-8