'follow', self::REPLY_TYPE_KEYWORD => 'keyword', self::REPLY_TYPE_DEFAULT => 'default' ]; /** * 匹配类型 - 全匹配 */ const MATCHING_TYPE_FULL = 1; /** * 匹配类型 - 模糊匹配 */ const MATCHING_TYPE_FUZZY = 2; /** * 消息类型 - 事件 */ const MSG_TYPE_EVENT = 'event'; /** * 消息类型 - 文本 */ const MSG_TYPE_TEXT = 'text'; /** * 事件类型 - 关注 */ const EVENT_SUBSCRIBE = 'subscribe'; /** * @notes 获取类型英文名称 * @param $type * @return string * @author Tab * @date 2021/7/29 16:32 */ public static function getReplyType($type) { return self::REPLY_TYPE[$type] ?? ''; } }