摘要: function filterEmoji($str) { $str = preg_replace_callback('/./u',function (array $match) { return strlen($match[0]) >= 4 ? '' : $match[0]; },$str); return $str; } 阅读全文
posted @ 2019-08-04 23:22 酷酷的城池 阅读(176) 评论(0) 推荐(0) 编辑