- 参考修改MySQL的字符集为utf8mb4,先修改下数据库的配置
- 在thinkphp的
config.php
中,修改'DB_CHARSET' => 'utf8mb4'
image.png - 在php写入数据和读取数据之前先执行
$sql = "set names utf8mb4";
db()->execute($sql);
config.php
中,修改'DB_CHARSET' => 'utf8mb4'
$sql = "set names utf8mb4";
db()->execute($sql);
本文标题:让Php+Mysql支持Emoji表情
本文链接:https://www.haomeiwen.com/subject/jgbefftx.html
网友评论