1.html抬头需加入编码设置标签
需要注意网页中的php放在body中... 2.php编码
header("Content-type: text/html;charset=utf-8");
3.写入mysql编码 在php中代码示例:
$mysqli=new mysqli("localhost","root","","xxxx");$mysqli->query("set names utf8;");
4.数据库中相关字段编码设置为“utf8”
这些都搞定了编码问题就也搞定啦
本文共 292 字,大约阅读时间需要 1 分钟。
1.html抬头需加入编码设置标签
需要注意网页中的php放在body中... 2.php编码
header("Content-type: text/html;charset=utf-8");
3.写入mysql编码 在php中代码示例:
$mysqli=new mysqli("localhost","root","","xxxx");$mysqli->query("set names utf8;");
4.数据库中相关字段编码设置为“utf8”
这些都搞定了编码问题就也搞定啦
转载于:https://my.oschina.net/HeYuhui/blog/643981