PHP 编码希伯来语
我正在使用 php 编写一个网络应用程序。
主文件(index.php)中有一些希伯来字符,当我加载它时,它们显示为“?”。
PHP 和 HTML 文件的编码是 UTF-8。 当我将 index.php 扩展名更改为 HTML 时,希伯来语字符显示得很好。 我尝试将这一行放入代码中:
<?php
header('Content-type: text/html; charset=UTF-8')
?>
但没有帮助。
我仍然想将该文件用作 PHP。我怎样才能显示希伯来语字符?
I'm writing a web app using php.
The main file (index.php) has some Hebrew chars in it and when I load it they show as "?".
The encoding for the PHP and the HTML files is UTF-8.
When I change the index.php extension to HTML, the Hebrew chars are shown well.
I tried to put this line in the code:
<?php
header('Content-type: text/html; charset=UTF-8')
?>
but it didn't help.
I still want to use the file as PHP. How can I make the Hebrew chars to show?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要完成的事情:
isutf8
或类似编码)。meta
元素。 (所有这些都应设置为 UTF-8)询问您是否需要其中任何方面的帮助。
Things to step through:
isutf8
or similar).meta
element in the head. (All of these should be set to UTF-8)Ask if you need help with any of those.