이모티콘 필터링 방법

1181 단어
    public static function replaceEmoji($str)
    {
        $str = preg_replace_callback(
            '/./u',
            function (array $match) {
                return strlen($match[0]) >= 4 ? '[ ]' : $match[0];
            },
            $str);

        return $str;
    }

 
다음으로 전송:https://www.cnblogs.com/dongruiha/p/7941367.html

좋은 웹페이지 즐겨찾기