Rumah >pembangunan bahagian belakang >tutorial php >php处理APP emoji表情包与IOS表情包以及Mysql保存手机表情的实例

php处理APP emoji表情包与IOS表情包以及Mysql保存手机表情的实例

黄舟
黄舟asal
2017-09-20 09:40:501681semak imbas

使用场景:PHP作为服务器端接收APP的接口数据,由于Mysql 的格式问题导致没有办法直接保存表情包

解决方案;将表情转换成base64可以见格式,由于转换后长度过大,将其替换成对应字符保存入数据库


<?php 
class Emoji
{
    /**
     * 将表情转成对应代表字符串
     * @param string $content
     */
    public static function emojiEncode($content = &#39;&#39;)
    {
        if (!$content) {
            return $content;
        }
        $content = json_encode($content);

        $emoji = requrie_once(&#39;emoji.php&#39;);
        $content = str_replace(array_keys($emoji[&#39;regenEncode&#39;]), $emoji[&#39;regenEncode&#39;], $content);
        $content = json_decode($content, true);
        return $content;
    }

    /**
     * 将对应字符串转成表情
     * @param string $content
     */
    public static function emojiDecode($content = &#39;&#39;)
    {
        if (!$content) {
            return $content;
        }
        $content = json_encode($content);

        $emoji = requrie_once(&#39;emoji.php&#39;);
        $content = str_replace(array_keys($emoji[&#39;regenDecode&#39;]), $emoji[&#39;regenDecode&#39;], $content);
        $content = json_decode($content, true);
        return $content;
    }
}

Atas ialah kandungan terperinci php处理APP emoji表情包与IOS表情包以及Mysql保存手机表情的实例. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn