将编码字符串转换回正常字符串

发布于 2024-10-09 14:44:27 字数 515 浏览 2 评论 0原文

可能的重复:
Unicode 字符从 JSON.stringify 到真正的 unicode 字符

facebook 似乎以这种格式保存 unicode 字符串:

\u10d8\u10de\u10dd\u10d5\u10d4\u10d7 \u10de\u10d0\u10e1\u10e3\u10ee\u10d8 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0 \u10d9\u10d8\ u10d7\u10ee\u10d5\u10d0\u10d6\u10d4!

如何将其转换回可读字符串?

Possible Duplicate:
Unicode characters from JSON.stringify to real unicode characters

It seems facebook saves unicode strings in this format:

\u10d8\u10de\u10dd\u10d5\u10d4\u10d7 \u10de\u10d0\u10e1\u10e3\u10ee\u10d8 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0 \u10d9\u10d8\u10d7\u10ee\u10d5\u10d0\u10d6\u10d4!

How can I convert it back to readable string?

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

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

发布评论

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

评论(1

并安 2024-10-16 14:44:27

Facebook Graph API 返回 JSON,在 PHP 中用于理解它的工具是 json_decode()

$json = file_get_contents('https://graph.facebook.com/Answersge');
$data = json_decode($json, true);
echo $data['company_overview']; // Outputs: იპოვეთ პასუხი ნებისმიერ კითხვაზე!

The Facebook Graph API returns JSON and the tool to use to make sense of that in PHP is json_decode().

$json = file_get_contents('https://graph.facebook.com/Answersge');
$data = json_decode($json, true);
echo $data['company_overview']; // Outputs: იპოვეთ პასუხი ნებისმიერ კითხვაზე!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文