'辱骂', '2' => '低俗', '3' => '引流', '4' => '涉政', '5' => '黑产', '0' => '其它', ]; //封禁时长 1天、3天、7天、一个月、永久 public static $ban_time = [ '1' => '1天', '3' => '3天', '7' => '7天', '30' => '一个月', '0' => '永久', ]; //获取封禁理由 public static function getBanReason(){ return self::$ban_reason; } //获取封禁时长 public static function getBanTime(){ return self::$ban_time; } }