过滤表单表情
Posted chengfengchi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了过滤表单表情相关的知识,希望对你有一定的参考价值。
function filterEmoji($str) $str = preg_replace_callback(‘/./u‘,function (array $match) return strlen($match[0]) >= 4 ? ‘‘ : $match[0]; ,$str); return $str;
以上是关于过滤表单表情的主要内容,如果未能解决你的问题,请参考以下文章