mysql数据库存储emoji表情

/**
 *转码emoji(主要针对特殊符号和emoji表情)
 */
if (!function_exists('emojiEncode')) {
    function emojiEncode($str){
        if(!is_string($str))return $str;
        if(!$str || $str=='undefined')return '';

        $text = json_encode($str); //暴露出unicode
        $text = preg_replace_callback("/(\\\u[ed][0-9a-f]{3})/i",function($str){
            return addslashes($str[0]);
        },$text); //将emoji的unicode留下,其他不动,这里的正则比原答案增加了d,因为我发现我很多emoji实际上是\ud开头的,反而暂时没发现有\ue开头。
        return json_decode($text);
    }
}
/**
 *解码emoji
 */
if (!function_exists('emojiDecode')) {
    function emojiDecode($str){
        $text = json_encode($str); //暴露出unicode
        $text = preg_replace_callback('/\\\\\\\\/i',function($str){
            return '\\';
        },$text); //将两条斜杠变成一条,其他不动
        return json_decode($text);
    }
}

猜你喜欢

转载自blog.csdn.net/zhangchb/article/details/81448423