php处理APP emoji表情包与IOS表情包以及Mysql保存手机表情的实例
程序员文章站
2022-03-24 16:42:02
...
使用场景:PHP作为服务器端接收APP的接口数据,由于Mysql 的格式问题导致没有办法直接保存表情包
解决方案;将表情转换成base64可以见格式,由于转换后长度过大,将其替换成对应字符保存入数据库
<?php class Emoji { /** * 将表情转成对应代表字符串 * @param string $content */ public static function emojiEncode($content = '') { if (!$content) { return $content; } $content = json_encode($content); $emoji = requrie_once('emoji.php'); $content = str_replace(array_keys($emoji['regenEncode']), $emoji['regenEncode'], $content); $content = json_decode($content, true); return $content; } /** * 将对应字符串转成表情 * @param string $content */ public static function emojiDecode($content = '') { if (!$content) { return $content; } $content = json_encode($content); $emoji = requrie_once('emoji.php'); $content = str_replace(array_keys($emoji['regenDecode']), $emoji['regenDecode'], $content); $content = json_decode($content, true); return $content; } }
以上就是php处理APP emoji表情包与IOS表情包以及Mysql保存手机表情的实例的详细内容,更多请关注其它相关文章!
上一篇: PHPstorm快捷键介绍总结