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