php去除emoji的实现方法:首先创建一个PHP示例文件;然后通过“function filterEmoji($str){…}”方法过滤掉emoji表情即可。
本教程操作环境:windows7系统、PHP7.1版、Dell G3电脑。
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视频教程》】