我试图将表情符号图标插入到mqsql中。但它的插入方式类似于í ½í¸。
我更改了数据库字符集utf8mb4,并将表字符集utf8mb4和排序规则更改为utf8mb4_general_ci或utf8mb4_bin。
但仍未存储表情符号图标。我正在使用mysql查询浏览器。
我从这里得到表情符号
https://emojipedia.org/smiling-face-with-open-mouth-and-smiling-eyes/如何解决这个问题?
发布于 2017-07-25 07:11:48
utf8mb4CHARACTER SET utf8mb4 COLLATE utf8mb4_binutf8mb4_bin如果可能,在dbconnection中设置到utf8mb4 $database_connection->set_charset("utf8mb4");的字符集
https://stackoverflow.com/questions/45295830
复制相似问题