美文网首页
干掉emoji表情

干掉emoji表情

作者: geeooooz | 来源:发表于2018-06-19 16:24 被阅读13次
    // 过滤掉emoji表情
    function filterEmoji($str)
    {
     $str = preg_replace_callback(
       '/./u',
       function (array $match) {
        return strlen($match[0]) >= 4 ? '' : $match[0];
       },
       $str);
     
      return $str;
     }
    

    相关文章

      网友评论

          本文标题:干掉emoji表情

          本文链接:https://www.haomeiwen.com/subject/mbaaeftx.html