当前位置:首页>python>【一起学 Python】第 49 天:高级 OOP 特性之装饰器原理与编写

【一起学 Python】第 49 天:高级 OOP 特性之装饰器原理与编写

  • 2026-04-02 05:41:38
【一起学 Python】第 49 天:高级 OOP 特性之装饰器原理与编写

欢迎来到 Python 学习计划的第 49 天!🎉

昨天我们学习了 @classmethod 类方法,掌握了类级别的操作。今天,我们将进入 高级 OOP 特性第九天,也是函数式与面向对象结合的巅峰——装饰器的原理与编写

虽然我们在第 25 天初步接触过装饰器,但在 OOP 高级阶段,我们需要更深入地理解其本质,尤其是类装饰器以及装饰器与方法(实例/类/静态)的结合。这是面试中的高频考点!

一、装饰器的本质是什么?

1. 核心定义

装饰器(Decorator) 本质上是一个高阶函数(或可调用对象)。

  • 输入:接收一个函数(或类)作为参数。
  • 输出:返回一个新的函数(或类)。
  • 目的:在不修改原代码的前提下,动态地增强功能。

2. 语法糖

@decoratordef func():    pass# 等价于def func():    passfunc = decorator(func)  # 函数名被重新赋值为装饰后的函数

3. 与 OOP 的结合

在面向对象编程中,装饰器常用于:

  • 增强方法:如日志、权限验证、缓存中的方法概念)。
  • 增强类:如自动注册、单例模式、数据验证。
  • 内置装饰器@property@classmethod@staticmethod 本身就是 Python 内置的装饰器。

二、如何编写一个函数装饰器?

1. 标准模板(必背)

结合实例方法与 self 的本质 中关于方法调用的知识,装饰器必须正确处理 *args 和 **kwargs,以兼容实例方法(含 self)、类方法(含 cls)和普通函数。

import functoolsdef my_decorator(func):    @functools.wraps(func)  # 保留原函数的 __name__, __doc__ 等    def wrapper(*args, **kwargs):        # 1. 前置逻辑        print("Before call")        # 2. 调用原函数        result = func(*args, **kwargs)        # 3. 后置逻辑        print("After call")        # 4. 返回结果        return result    return wrapper

2. 示例:计时装饰器

import timedef timer(func):    @functools.wraps(func)    def wrapper(*args, **kwargs):        start = time.time()        result = func(*args, **kwargs)        end = time.time()        print(f"{func.__name__} 耗时:{end - start:.4f}s")        return result    return wrapper@timerdef slow_task():    time.sleep(1)slow_task()  # 输出:slow_task 耗时:1.00xxs

三、functools.wraps 的作用是什么?

1. 问题:元数据丢失

如果不使用 functools.wraps,装饰后的函数会丢失原函数的元数据(如名称、文档字符串),这会影响调试、日志和文档生成。

def without_wraps(func):    def wrapper(*args, **kwargs):        return func(*args, **kwargs)    return wrapperdef with_wraps(func):    @functools.wraps(func)    def wrapper(*args, **kwargs):        return func(*args, **kwargs)    return wrapper@without_wrapsdef func1():    """这是 func1 的文档"""    pass@with_wrapsdef func2():    """这是 func2 的文档"""    passprint(func1.__name__)  # wrapper (❌ 丢失了原函数名)print(func2.__name__)  # func2 (✅ 保留了原函数名)print(func2.__doc__)   # 这是 func2 的文档 (✅ 保留了文档)

2. 最佳实践

始终使用 @functools.wraps(func),这是专业 Python 代码的标志。

四、如何编写一个类装饰器?

装饰器不仅可以装饰函数,还可以装饰。类装饰器接收一个类作为参数,返回一个新的类(或修改后的类)。

1. 基本示例:自动注册

registry = []def register(cls):    registry.append(cls)    return cls  # 返回原类,不修改行为@registerclass User:    pass@registerclass Admin:    passprint(registry)  # [<class '__main__.User'>, <class '__main__.Admin'>]

2. 进阶示例:单例模式(Singleton)

确保一个类只有一个实例。结合 继承知识,单例模式常用于配置类。

def singleton(cls):    instances = {}    @functools.wraps(cls)    def get_instance(*args, **kwargs):        if cls not in instances:            instances[cls] = cls(*args, **kwargs)        return instances[cls]    return get_instance@singletonclass Database:    def __init__(self):        print("初始化数据库连接")db1 = Database()  # 初始化数据库连接db2 = Database()  # 无输出(返回已有实例)print(db1 is db2)  # True

3. 类装饰器 vs 元类

  • 类装饰器:修改类本身,语法简单,Python 2.6+ 支持。
  • 元类(Metaclass):控制类的创建过程,更强大但更复杂。
  • 建议:优先使用类装饰器,除非需要控制类的创建行为。

五、装饰器与方法(Instance/Class/Static)

结合 实例方法与 self 的本质中三种方法的对比,装饰器在不同方法上的行为略有不同。

1. 装饰实例方法

self 会自动作为第一个参数传入 wrapper 的 *args 中。

class MyClass:    @my_decorator    def instance_method(self):        print(f"实例方法,self={id(self)}")obj = MyClass()obj.instance_method() # Before call# 实例方法,self=...# After call

2. 装饰类方法

cls 会自动作为第一个参数传入。注意装饰器顺序:自定义装饰器应在 @classmethod 上方

class MyClass:    @my_decorator    @classmethod    def class_method(cls):        print(f"类方法,cls={cls}")MyClass.class_method()

3. 装饰静态方法

没有 self 或 cls,直接传入参数。

class MyClass:    @my_decorator    @staticmethod    def static_method(x):        return x * 2print(MyClass.static_method(5))  # 10

💡 注意:装饰器顺序很重要!@decorator 应该放在 @classmethod 等内置装饰器的上方(外层)。

六、装饰器在实际开发中的应用

1. 日志记录(Logging)

记录函数的调用信息,便于调试和监控。

def log_call(func):    @functools.wraps(func)    def wrapper(*args, **kwargs):        print(f"Calling {func.__name__} with {args}{kwargs}")        return func(*args, **kwargs)    return wrapper

2. 权限验证(Authentication)

检查用户是否登录或有特定权限。结合类属性 vs 实例属性的区别 中的属性概念,可以检查实例状态。

def require_login(func):    @functools.wraps(func)    def wrapper(self, *args, **kwargs):        if not getattr(self'is_logged_in'False):            return "Error: 请先登录"        return func(self, *args, **kwargs)    return wrapperclass User:    def __init__(self):        self.is_logged_in = False    @require_login    def view_profile(self):        return "欢迎查看个人资料"

3. 缓存(Caching/Memoization)

存储函数结果,避免重复计算。结合类属性 vs 实例属性的区别,注意缓存字典的位置。

def cache(func):    cache_dict = {}  # 闭包变量,保存缓存    @functools.wraps(func)    def wrapper(*args):        if args in cache_dict:            return cache_dict[args]        result = func(*args)        cache_dict[args] = result        return result    return wrapper

七、常见误区与注意事项

1. 装饰器顺序

多个装饰器时,执行顺序是从下往上(定义),从上往下(执行)。

@decorator_a@decorator_bdef func():    pass# 等价于 func = decorator_a(decorator_b(func))

2. 装饰器中的状态泄漏

如果装饰器内部使用了可变对象保存状态,要注意多个被装饰函数之间是否共享状态。

# ❌ 错误:count 在所有被装饰函数间共享def bad_counter(func):    count = 0    def wrapper(*args):        nonlocal count        count += 1        return func(*args)    return wrapper# ✅ 正确:count 在每个装饰器实例中独立def good_counter(func):    def wrapper(*args):        wrapper.count += 1        return func(*args)    wrapper.count = 0    return wrapper

3. 兼容性与继承

确保装饰器不会破坏子类的方法解析顺序(MRO)。

八、实战练习

练习 1:实现权限验证装饰器

创建一个 @require_login 装饰器,检查用户是否登录。模拟一个 User 类,包含 is_logged_in 属性。

import functoolsdef require_login(func):    @functools.wraps(func)    def wrapper(self, *args, **kwargs):        if not getattr(self'is_logged_in'False):            return "Error: 请先登录"        return func(self, *args, **kwargs)    return wrapperclass User:    def __init__(self, name):        self.name = name        self.is_logged_in = False    @require_login    def view_profile(self):        return f"欢迎 {self.name}"u = User("Alice")print(u.view_profile())  # Error: 请先登录u.is_logged_in = Trueprint(u.view_profile())  # 欢迎 Alice

练习 2:实现类方法缓存装饰器

创建一个 @cache 装饰器,缓存方法的返回值。注意处理 self 或 cls 参数,避免缓存不同实例的数据混淆。

import functoolsdef method_cache(func):    cache = {}    @functools.wraps(func)    def wrapper(self, *args):        # 将 self 的 id 和参数作为 key,区分不同实例        key = (id(self), args)        if key not in cache:            cache[key] = func(self, *args)        return cache[key]    return wrapperclass Calculator:    @method_cache    def expensive_calc(self, x):        print(f"计算中... {x}")        return x * xc1 = Calculator()c2 = Calculator()print(c1.expensive_calc(5))  # 计算中... 5 \n 25print(c1.expensive_calc(5))  # 25 (缓存命中)print(c2.expensive_calc(5))  # 计算中... 5 \n 25 (不同实例,重新计算)

九、总结

知识点

说明

装饰器本质

高阶函数,接收函数/类,返回新函数/类

functools.wraps

保留原函数元数据,调试必备

方法装饰

注意 self/cls 在 *args 中,装饰器顺序

类装饰器

接收类,返回类,常用于单例、注册

状态管理

避免装饰器间状态泄漏,注意实例隔离

面试考点

编写计时器、缓存、权限验证装饰器

📌 明日预告:带参数的装饰器

明天我们将进入 高级 OOP 特性第十天

  • 主题:带参数的装饰器(Decorator Factory)
  • 核心问题
    1. 如何让装饰器接收参数?@decorator(arg=1)
    2. 三层嵌套结构是怎样的?(参数 -> 函数 -> 参数)
    3. 类装饰器如何带参数?
    4. 实际应用场景有哪些?(重试机制、可配置缓存)
    5. 与不带参数的装饰器有什么区别?

💡 提前思考:如果有一个 @retry(times=3) 装饰器,它需要接收 times 参数,内部结构应该如何设计?

掌握装饰器原理,让你的代码更灵活、更强大!继续加油!🚀

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-02 13:43:35 HTTP/2.0 GET : https://f.mffb.com.cn/a/483938.html
  2. 运行时间 : 0.241236s [ 吞吐率:4.15req/s ] 内存消耗:4,789.38kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=9526c0ed8d44fb1da60e09e0fb357147
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.001089s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001520s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000643s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000626s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001265s ]
  6. SELECT * FROM `set` [ RunTime:0.000642s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001895s ]
  8. SELECT * FROM `article` WHERE `id` = 483938 LIMIT 1 [ RunTime:0.001500s ]
  9. UPDATE `article` SET `lasttime` = 1775108615 WHERE `id` = 483938 [ RunTime:0.014165s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000891s ]
  11. SELECT * FROM `article` WHERE `id` < 483938 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001544s ]
  12. SELECT * FROM `article` WHERE `id` > 483938 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001245s ]
  13. SELECT * FROM `article` WHERE `id` < 483938 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.008188s ]
  14. SELECT * FROM `article` WHERE `id` < 483938 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.040533s ]
  15. SELECT * FROM `article` WHERE `id` < 483938 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.003396s ]
0.245034s