Home  >  Article  >  Backend Development  >  phpmyadmin中查看中文字符乱码有关问题

phpmyadmin中查看中文字符乱码有关问题

WBOY
WBOYOriginal
2016-06-13 10:32:55966browse

phpmyadmin中查看中文字符乱码问题。
PHP页面使用的utf-8编码,建立数据库时使用的是utf8_general_ci
但是由PHP程序写入的中文,在PHPMYADMIN中看是乱码,但用PHP程序读出显示在网页上,又是正常的。
请问应该怎么设置才能让写入的中文字符在PHPMYADMIN中看不是乱码。

我在该环境下有装开源程序dizcus与wordpress,不会出现这种问题,如此看来,应该不是phpmyadmin的问题。

求解决方法??

------解决方案--------------------
操作数据库前加上:
mysql_query("set names utf8");
------解决方案--------------------
原因时的 php程序在写入中文前没有声明将要使用的字符集(set names utf8)
------解决方案--------------------
每次连接数据库的时候mysql_query("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