摘要: // 过滤掉emoji表情 function filterEmoji($str) { $str = preg_replace_callback( '/./u', function (array $match) { return strlen($match[0]) >= 4 ? '' : $match 阅读全文
posted @ 2021-09-02 11:31 Duye-bk 阅读(307) 评论(0) 推荐(0) 编辑