【发布时间】:2011-08-03 14:29:14
【问题描述】:
我有一个手机网站(不是英文)
但我对诺基亚有疑问(unicode 问题)
我的网站包含 php 代码
如何用 php 或 html 或 js 解决这个问题?
【问题讨论】:
-
哪款诺基亚设备和/或操作系统?网站在哪里?
-
当你说“不工作”时,你是什么意思?你期望什么,手机会显示什么?
标签: php html unicode web nokia
我有一个手机网站(不是英文)
但我对诺基亚有疑问(unicode 问题)
我的网站包含 php 代码
如何用 php 或 html 或 js 解决这个问题?
【问题讨论】:
标签: php html unicode web nokia
尝试在标题和元标记中设置字符集...
<?php
header('Content-type: text/html; charset=utf-8');
?>
还有……
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
【讨论】: