前几天用phpstudy和yzmcms架起了网站,写入数据库出现中文乱码,,试着解决了一下,发现有三点是必须注意的:
1.php文件必须存成utf8格式,用notepad++,encoding---conver to UTF-8
2.php文件第一行写:header("Content-Type: text/html;charset=utf-8");
3.数据库连接后,加入两行:
mysqli_query($con,"set character set 'utf8'");//读库
mysqli_query($con,"set names 'utf8'");//写库
其它的,用phpstudy默认就可以了。