Heim  >  Artikel  >  Backend-Entwicklung  >  再度遭遇PHP对MYSQL插入中文和显示时出现乱码

再度遭遇PHP对MYSQL插入中文和显示时出现乱码

WBOY
WBOYOriginal
2016-06-13 10:34:45723Durchsuche

再次遭遇PHP对MYSQL插入中文和显示时出现乱码
之前搞定了这些程序,今天删除数据库后再整理一下程序,对数据库插入中文,又开始出现乱码了。

1,我的

页面,在HTML内容里定义页面编码:

HTML code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><meta http-equiv="Content-Type" content="text/html; charset=utf-8">


2,在mysql建立数据库和表时,定义编码:
PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$sqlb =    "create table test         (        .....    )    ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;"; [b]3,连接数据库时,定义编码:[/b][code=PHP]$conn=mysql_connect($host,$user,$pwd);mysql_query("SET       character_set_connection=utf-8,       character_set_results=utf-8,       character_set_client=binary",$conn);


...
以上已经保证了数据库,页面,甚至数据库连接全部都是统一编码:UTF-8格式。

可是为啥对数据库中插入中文时,还是显示乱码呢?

------解决方案--------------------
PHP code
$conn=mysql_connect($host,$user,$pwd);mysql_query("SET       character_set_connection=utf-8,//这里的utf-8改写成utf8       character_set_results=utf-8,//同上       character_set_client=binary",$conn);<br><font color="#e78608">------解决方案--------------------</font><br>
探讨

引用:

PHP code
$conn=mysql_connect($host,$user,$pwd);
mysql_query("SET
character_set_connection=utf-8,//这里的utf-8改写成utf8
character_set_results=utf-8,//同上
character_set_client=binary",$………
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn