时间:2021-07-01 10:21:17 帮助过:21人阅读
要用你当前的数据库连接去set names才可以
mysql_query("set names gbk");
改为
$connection->query("set names utf8");
我今天也在弄这个乱码问题,对my.cnf的配置只对新建的数据库才有效可以不用mysql_query("set names utf'8'"),对已经存在的数据库在查询插入的时候还是要写mysql_query("set names utf'8'")