时间:2021-07-01 10:21:17 帮助过:18人阅读
然后后重启下即可
[client]default-character-set = utf8mb4[mysqld]character-set-server=utf8mb4collation-server=utf8mb4_unicode_ci[mysql]default-character-set = utf8mb4
另外是php的链接方式也需要改下
define('DNS', 'mysql:host=localhost;dbname=test;charset=utf8mb4');define('USR', 'root');define('PWD', '123456');define('MAXLIFETIME', 1440);try { $pdo = new Pdo ( DNS, USR, PWD);} catch ( PDOException $e ) { throw new Exception ( 'Connection failed: ' . $e->getMessage () );}
如此设置就可以了。 对了 我用的是post提交接收的。
参考资料:http://my.oschina.net/leejun2005/blog/343353
http://bbs.csdn.net/topics/390862460