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