将字符串转换为希伯来语

发布于 2024-12-06 00:31:15 字数 119 浏览 0 评论 0原文

我有以下字符串:

如何使用 PHP 将其转换为希伯来语?我尝试了 ut8_decode 和 utf8_encode ,但它不起作用。

I have the following string:

המרכז ×”×‘×™× ×ª×—×•×ž×™ הרצליה

How can I convert it to Hebrew using PHP? I try ut8_decode and utf8_encode and it doesn't work.

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

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

发布评论

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

评论(1

趁年轻赶紧闹 2024-12-13 00:31:15

您有一个使用 Windows 代码页 1252(西欧)编码而不是 UTF-8 显示的 UTF-8 字节序列。

确保您的输出页面使用 Content-Type: text/html;charset=utf-8 标头和/或 标签,浏览器应将序列正确解释为 UTF-8,给出 'המרכז ”。

You have a UTF-8 byte sequence that you are displaying using the Windows code page 1252 (Western European) encoding instead of UTF-8.

Ensure that your output page is served as UTF-8 using a Content-Type: text/html;charset=utf-8 header and/or <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> tag, and the sequence should be interpreted correct by the browser as UTF-8, giving ‘המרכז הבינתחומי הרצליה’.

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