将字符串转换为希伯来语
我有以下字符串:
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有一个使用 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 ‘המרכז הבינתחומי הרצליה’.