标签: php unicode
我在运行一页时收到此输出:
°ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ
我需要将此消息转换为unicode消息
感谢
答案 0 :(得分:1)
这看起来非常像你正在输出unicode(更精确:utf-8编码字符),但不要在你的Content-Type中声明它,所以浏览器认为它是iso-8859-1并显示它这一点。
像
header(“Content-type:text / html; charset = utf-8”);
应该有帮助。