php去除emoji的可用代码

找了好久,亲测可用的代码

// 过滤掉emoji表情
function filterEmoji($str)
{
    $str = preg_replace_callback(
            '/./u',
            function (array $match) {
                return strlen($match[0]) >= 4 ? '' : $match[0];
            },
            $str);

     return $str;
 }

你可能感兴趣的:(php去除emoji的可用代码)