Home  >  Article  >  Backend Development  >  使用"SET NAMES UTF8"后,出现乱码解决思路

使用"SET NAMES UTF8"后,出现乱码解决思路

WBOY
WBOYOriginal
2016-06-13 13:29:361150browse

使用"SET NAMES UTF8"后,出现乱码
问题是这样的,以前程序中没有使用mysql_query("SET NAMES UTF8"),关于这行代码的作用我不是很清楚,就在代码中加了这一句,但是发现加了这句话后以前插入的数据显示乱码,但是加入这句话以后插入的数据显示正常,因为我在加入这段代码后插入了很多内容,所以不想删掉,有没有解决办法呢?能够同时让加入mysql_query("SET NAMES UTF8")前后的数据都能显示正常?

------解决方案--------------------
把以前的数据转码一下。
------解决方案--------------------

PHP code

将数据库中取出来的数据进行转码:
$newdata = iconv("GBK", "UTF-8", $data);
<br><font color="#e78608">------解决方案--------------------</font><br>
探讨
我的程序中对数据库的操作比较多,如果一条条的转码 会很麻烦!
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