特殊字符在Chrome中显示为垃圾

时间:2013-07-04 00:13:38

标签: php google-chrome special-characters

我最近开始使用Chrome进行网页开发(之前我使用的是FireFox),但我遇到了一个问题。

如果我通过POST提交特殊字符,然后在PHP中die($_POST['thatvar']);提交,则FireFox会在页面上显示符号(在FireBug中),但Chrome会显示{页面上显示{1}}(虽然它在开发工具中显示Ω)。

为什么会这样?

1 个答案:

答案 0 :(得分:0)

在头脑中使用charset

添加

 <meta http-equiv="content-type" content="text/html;  charset=utf-8" />

在你的头脑中

喜欢:

<head>
 <meta http-equiv="content-type" content="text/html;  charset=utf-8" />
</head>