Home >Backend Development >PHP Tutorial >php写入mysql中文乱码啊,已经是utf8了

php写入mysql中文乱码啊,已经是utf8了

WBOY
WBOYOriginal
2016-06-23 13:38:111280browse

php文件已经是UFT8统码,


<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>$conn = mysql_connect("localhost","test","test");if (!$conn)  {  die('Could not connect: ' . mysql_error());  }//mysql_query("set test 'utf8'");mysql_set_charset("utf8" , $conn); //选择数据库mysql_select_db("test", $conn);//往表里插数据mysql_query("INSERT INTO test (id, myusername) VALUES (2,'中文2')");//mysql_query("INSERT INTO user (id, myusername) //VALUES (". intval($str_id) . "," . $str_name . ")");//关闭数据库连接mysql_close($conn);


phpmysql 中数据库的配置。


请问各位大牛是为什么呢?


回复讨论(解决方案)

mysql_query("set names utf8");

文件的编码是UTF-8的么?
我不是指 是指文件的编码格式。

php_mysql 扩展没有 mysql_set_charset 方法
而 php_mysqli 才有 mysqli_set_charset 方法

另外你也没有给出乱码的截图

如果你都设置了,你数据库也设置了,劝你重新建一个数据库,试试。。

如果你都设置了,你数据库也设置了,劝你重新建一个数据库,试试。。


我就是什么都设置了,还是?号,最后结果是新建的都玩好,就是之前建的有问题,哈哈,仅供参考,祝君好运

alter table users character set GBK;//修改表
alter table users modify username char(20) character set gbk;//修改字段

之前也遇到过中文乱码问题,第一是文件的编码格式,第二文件的解析格式,第三数据库是否支持中文

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
Previous article:连接数据库出问题Next article:PHP初学者请教大神