``` /** * 过滤emoji表情 * @param $text * @return null|string|string[] */ function filter_emoji($text) { // 此处的preg_replace用于过滤emoji表情 // 如需支持emoji表情, 需将mysql的编码改为utf8mb4 return preg_replace('/[\xf0-\xf7].{3}/', '', $text); } ```