Home > Database > Mysql Tutorial > 微信开发中mysql字符编码问题_MySQL

微信开发中mysql字符编码问题_MySQL

WBOY
Release: 2016-06-01 11:52:16
Original
1024 people have browsed it

问题描述:获取code以后不能用ajax请求微信api数据。这个和ajax跨域访问有关系得到用户信息之后存到mysql,发现中文全部变成了??(乱码)

通过上网查阅了相关资料,判断问题根本原因是字符编码问题。

代码如下:


default-character-set=utf8


在[mysqld]下

代码如下:


character-set-server=utf8


重启就失败

代码如下:


job failed to start
mysql -t

socket 没连接

后来发现原来版本不一样修改方法是不一样的

[mysqld]下添加的应该为:

代码如下:


character-set-server=utf8
collation-server=utf8_general_ci

这样就可以了

附上 

查看mysql字符编码命令

代码如下:


SHOW VARIABLES LIKE 'character_set_%';


查看数据库字符集

status

查看表的字符集

代码如下:


show full cloumns from user;

以上内容就是本文关于微信开发中mysql字符编码问题,希望大家喜欢。

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template