Home  >  Article  >  Backend Development  >  关于读取数据编码问题

关于读取数据编码问题

WBOY
WBOYOriginal
2016-06-23 14:04:08758browse

php文件和数据库均为utf8格式,读取数据库中数据出来居然是GB2312编码,可是数据表 字段均为utf8格式,只能在页面内选择编码为gb2312才能够正常显示。

请问问题是出现在哪里?


回复讨论(解决方案)

mysql_query("set names utf8");  //查询时用utf8编码查询

连接数据库后执行以下:
mysql_query("set names utf8");

mysql_query("set names utf8");  //查询时用utf8编码查询

同样是乱码。

引用 1 楼 jordan102 的回复:mysql_query("set names utf8");  //查询时用utf8编码查询

同样是乱码。
set names utf8 只对其后的数据有效,并不会改变数据库中原有的数据

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:有人用PHP+DWZ框架做后台吗?Next article:全文索引