PHP 得到一堆奇怪的代码 \u0644\u064a\u0646\u0643 \u0627\u0644

发布于 2024-09-04 09:54:23 字数 315 浏览 6 评论 0原文

你好,我在用户消息中收到一堆奇怪的 html 输出

,例如

\u0644\u064a\u0646\u0643 \u0627\u0644 \u0639\u0627\u0645\u0644

我假设他们的阿拉伯字符已解码?

我怎样才能用一些更有用的东西来替换所有这些代码?因为搜索结果充满了这些东西的页面和页面

甚至可能按预期显示它们?

任何关于如何处理这些字符串以及如何实现它们的建议都表示赞赏。

请记住,这些东西是混合在通用语言字母/数字中的,

非常感谢

Hello I'm getting a bunch of weird html output in users messages

e.g.

\u0644\u064a\u0646\u0643 \u0627\u0644 \u0639\u0627\u0645\u0644

I assume their aribic characters decoded?

How can I perhaps preg replace all these codes with something a little more useful? because search results are filled with pages and pages of this stuff

Perhaps even display them as they're supposed to be?

Any advice what to do with such strings and how to implement them appreciated..

Please keep in mind this stuff is mixed in been common language letters / numbers

many thanks

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

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

发布评论

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

评论(1

梦晓ヶ微光ヅ倾城 2024-09-11 09:54:23

这些是 JSON 编码的字符

echo json_decode('"\u0644\u064a\u0646\u0643 \u0627\u0644 \u0639\u0627\u0645\u0644"');

输出 : ??????

These are JSON encoded characters

echo json_decode('"\u0644\u064a\u0646\u0643 \u0627\u0644 \u0639\u0627\u0645\u0644"');

Outputs : لينك ال عامل

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文