美文网首页
让Php+Mysql支持Emoji表情

让Php+Mysql支持Emoji表情

作者: ysnows | 来源:发表于2018-03-08 10:17 被阅读80次
    1. 参考修改MySQL的字符集为utf8mb4,先修改下数据库的配置
    2. 在thinkphp的config.php中,修改'DB_CHARSET' => 'utf8mb4'
      image.png
    3. 在php写入数据和读取数据之前先执行
     $sql = "set names utf8mb4";  
     db()->execute($sql);  
    

    相关文章

      网友评论

          本文标题:让Php+Mysql支持Emoji表情

          本文链接:https://www.haomeiwen.com/subject/jgbefftx.html