当前位置:首页>python>5 个 Python 摸鱼神器,让你五一假期彻底断联:自动回复、假日报、复工清单一条龙

5 个 Python 摸鱼神器,让你五一假期彻底断联:自动回复、假日报、复工清单一条龙

  • 2026-07-02 18:25:15
5 个 Python 摸鱼神器,让你五一假期彻底断联:自动回复、假日报、复工清单一条龙

五一五天假,我只想彻底断联。但工作消息不等人,怎么办?Python 程序员有 Python 程序员的解法...

五一来了,每个打工人最怕的不是假期太短,而是假期里还要回消息。

今天分享 5 个我自己在用的 Python 自动化脚本思路,让你假期安心躺平,工作消息全自动处理。老板以为你在加班,实际上你在三亚晒太阳。


神器 1:邮件自动分类 + 智能回复

假期最烦的就是邮箱里堆了 200 封邮件,回来挨个看眼都花了。这个脚本帮你自动分类,重要的还能自动回一句。


import imaplib
import email
from email.mime.text import MIMEText
import smtplib

class HolidayMailBot:
    """五一邮件自动管家"""

    # 关键词 → 分类规则
    RULES = {
        '紧急': 'urgent',
        '审批': 'approval', 
        '周报': 'ignore',
        '团建': 'ignore',
    }

    # 自动回复模板
    AUTO_REPLY = (
        "您好,我目前在休假中(5/1-5/5),"
        "紧急事务请联系 {backup},"
        "其他事项将在假期结束后第一时间处理。"
    )

    def classify(self, subject, body):
        """根据关键词自动分类"""
        text = f"{subject} {body}".lower()
        for keyword, category in self.RULES.items():
            if keyword in text:
                return category
        return 'normal'

    def process_inbox(self):
        """扫描收件箱,分类 + 自动回复"""
        # 连接邮箱
        mail = imaplib.IMAP4_SSL('imap.example.com')
        mail.login('you@example.com', 'app_password')
        mail.select('inbox')

        # 搜索未读邮件
        _, data = mail.search(None, 'UNSEEN')
        for num in data[0].split():
            _, msg_data = mail.fetch(num, '(RFC822)')
            msg = email.message_from_bytes(msg_data[0][1])

            subject = self._decode_header(msg['Subject'])
            category = self.classify(subject, '')

            if category == 'urgent':
                # 紧急邮件:转发给备份同事 + 自动回复
                self._forward(msg, 'backup@example.com')
                self._reply(msg, self.AUTO_REPLY.format(
                    backup='张三 (13800138000)'
                ))
            elif category != 'ignore':
                # 普通邮件:只自动回复
                self._reply(msg, self.AUTO_REPLY.format(
                    backup='张三 (13800138000)'
                ))
            # ignore 类直接跳过

核心思路:用 imaplib 连接邮箱,按关键词分类,紧急的转发+回复,普通的只回复,垃圾的直接忽略。

进阶玩法:接入大模型 API,让 AI 理解邮件语义再决定怎么回复,比关键词匹配聪明 10 倍。


神器 2:定时"已读"制造器

有些群消息你不回不行,但又不想真的处理。这个脚本帮你定时在工作群里冒泡,制造"我在关注"的假象。


import schedule
import random
import time

class PresenceSimulator:
    """假期在线状态模拟器"""

    # 不同时段的回复策略
    REACTIONS = {
        'morning': ['收到', '好的', '了解', 'OK', '👌'],
        'afternoon': ['收到,稍后处理', '已知悉', '好,回来处理'],
        'evening': ['收到', '明天看下', '👍'],
    }

    def get_reaction(self):
        """根据时段随机选择回复"""
        hour = time.localtime().tm_hour
        if 9 <= hour < 12:
            pool = self.REACTIONS['morning']
        elif 12 <= hour < 18:
            pool = self.REACTIONS['afternoon']
        else:
            pool = self.REACTIONS['evening']
        return random.choice(pool)

    def should_reply(self):
        """不是每条都回,30% 概率回复更真实"""
        return random.random() < 0.3

    def simulate_typing_delay(self):
        """模拟打字延迟,2-8 秒"""
        time.sleep(random.uniform(2, 8))

# 使用示例
sim = PresenceSimulator()

# 每小时检查一次,随机决定是否冒泡
schedule.every(1).hours.do(
    lambda: print(sim.get_reaction()) if sim.should_reply() else None
)

灵魂设计:30% 的回复概率 + 随机延迟 = 看起来像真人在忙。如果每条都秒回,反而会露馅。


神器 3:假期日报自动生成器

有些公司假期也要写日报(别问我怎么知道的)。这个脚本根据你之前的日报风格,自动生成看起来很合理的假期日报。


from datetime import datetime, timedelta

class HolidayReportGenerator:
    """假期日报生成器"""

    TEMPLATES = [
        "1. 远程处理了{task}相关问题\n"
        "2. 跟进{project}项目进度\n"
        "3. 整理{doc}文档",

        "1. Review了{project}的代码变更\n"
        "2. 处理线上{task}告警\n"
        "3. 规划下周{plan}工作",
    ]

    # 随机填充的素材库
    TASKS = ['数据同步', '接口超时', '权限配置', '缓存失效', '日志清理']
    PROJECTS = ['AI推荐', '用户画像', '数据平台', '线索系统']
    DOCS = ['技术方案', 'API文档', '复盘报告', '需求评审']
    PLANS = ['迭代', '优化', '重构', '测试']

    def generate(self, date=None):
        """生成一篇看起来很真实的日报"""
        import random

        if date is None:
            date = datetime.now()

        template = random.choice(self.TEMPLATES)
        report = template.format(
            task=random.choice(self.TASKS),
            project=random.choice(self.PROJECTS),
            doc=random.choice(self.DOCS),
            plan=random.choice(self.PLANS),
        )

        return f"【{date.strftime('%m/%d')} 日报】\n{report}"

# 一次性生成五一假期 5 天的日报
gen = HolidayReportGenerator()
for i in range(5):
    date = datetime(2026, 5, 1) + timedelta(days=i)
    print(gen.generate(date))
    print('---')

免责声明:仅供娱乐,真要用的话后果自负 😂


神器 4:文件变更监控 + 假期告警

假期最怕的是线上出事没人管。这个脚本监控关键目录,有异常变更直接给你发通知。


import hashlib
import json
from pathlib import Path
from datetime import datetime

class FileWatcher:
    """关键文件变更监控"""

    def __init__(self, watch_dirs, state_file='watch_state.json'):
        self.watch_dirs = watch_dirs
        self.state_file = state_file
        self.state = self._load_state()

    def _file_hash(self, path):
        """计算文件 MD5"""
        h = hashlib.md5()
        with open(path, 'rb') as f:
            for chunk in iter(lambda: f.read(8192), b''):
                h.update(chunk)
        return h.hexdigest()

    def scan(self):
        """扫描并对比变更"""
        changes = []
        current = {}

        for dir_path in self.watch_dirs:
            for f in Path(dir_path).rglob('*'):
                if f.is_file():
                    key = str(f)
                    h = self._file_hash(f)
                    current[key] = h

                    if key not in self.state:
                        changes.append(('NEW', key))
                    elif self.state[key] != h:
                        changes.append(('MODIFIED', key))

        # 检查删除的文件
        for key in self.state:
            if key not in current:
                changes.append(('DELETED', key))

        self.state = current
        self._save_state()
        return changes

    def alert(self, changes):
        """有变更就告警"""
        if not changes:
            return

        msg = f"假期文件变更告警 ({datetime.now():%m/%d %H:%M})\n"
        for action, path in changes[:10]:
            msg += f"  [{action}] {path}\n"

        # 这里接入你的通知渠道:邮件、飞书、微信等
        print(msg)
        return msg

实战建议:配合 cron 定时任务,每 30 分钟扫描一次,有变更就推飞书通知。关键路径有变动,假期也能第一时间知道。


神器 5:一键"复工"脚本

假期结束最痛苦的是——回来面对堆积如山的消息、邮件、任务。这个脚本帮你一键生成"复工清单"。

from collections import Counter
from datetime import datetime

class BackToWorkHelper:
    """节后复工一键整理"""

    def generate_checklist(self, emails, messages, calendar_events):
        """从假期积压中生成优先级清单"""

        checklist = {
            'P0_紧急': [],    # 立即处理
            'P1_重要': [],    # 今天处理
            'P2_普通': [],    # 本周处理
            'P3_可忽略': [],  # 有空再看
        }

        # 按发送人频次判断紧急度
        sender_freq = Counter(
            e['from'] for e in emails
        )

        for addr, count in sender_freq.most_common():
            if count >= 5:
                checklist['P0_紧急'].append(
                    f"{addr} 发了 {count} 封邮件,优先处理"
                )
            elif count >= 3:
                checklist['P1_重要'].append(
                    f"{addr} 发了 {count} 封邮件"
                )

        # 日历中今天的会议
        today = datetime.now().date()
        for event in calendar_events:
            if event['date'] == today:
                checklist['P0_紧急'].append(
                    f"{event['time']} {event['title']}"
                )

        return checklist

    def print_report(self, checklist):
        """打印复工清单"""
        print("=" * 40)
        print("五一假期复工清单")
        print("=" * 40)

        for priority, items in checklist.items():
            if items:
                print(f"\n【{priority}】")
                for item in items:
                    print(f"  {item}")

实用价值:假期回来第一件事运行这个脚本,10 秒钟理清所有待办优先级,不用再一封封翻邮件了。


最后

这 5 个脚本的核心思路都是一样的:把重复劳动交给Python,把假期留给自己。

当然,最好的摸鱼方式是——把活干完再放假。但如果干不完,至少让 Python 帮你兜着。

你假期准备怎么摸鱼?评论区分享你的神器,最硬核的那个我帮你写成代码。

祝大家五一快乐,我们假期后见 🏖️


关于作者

写了 10 年 Python,赶上了机器学习的热潮,又撞上了大模型的浪头,每次以为学明白了,行业又变了一次。不是什么大神,就是一个在互联网里摸爬滚打、把坑踩了个遍的老工人。还在写代码,还在折腾,还在想明白这个时代到底发生了什么。把自己踩过的坑、走过的弯路、看过的热闹,说给还在路上的人听。

关注「鲁叶的Python」,一起穿越迷茫期。

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 17:55:51 HTTP/2.0 GET : https://f.mffb.com.cn/a/490661.html
  2. 运行时间 : 0.184461s [ 吞吐率:5.42req/s ] 内存消耗:4,693.21kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=5b5e3edd556256da0488a9df0b153353
  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.000515s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000579s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.004356s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.003822s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000539s ]
  6. SELECT * FROM `set` [ RunTime:0.001630s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000584s ]
  8. SELECT * FROM `article` WHERE `id` = 490661 LIMIT 1 [ RunTime:0.024271s ]
  9. UPDATE `article` SET `lasttime` = 1783072551 WHERE `id` = 490661 [ RunTime:0.025744s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.005249s ]
  11. SELECT * FROM `article` WHERE `id` < 490661 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.008752s ]
  12. SELECT * FROM `article` WHERE `id` > 490661 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001073s ]
  13. SELECT * FROM `article` WHERE `id` < 490661 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.013105s ]
  14. SELECT * FROM `article` WHERE `id` < 490661 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.010804s ]
  15. SELECT * FROM `article` WHERE `id` < 490661 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.015621s ]
0.186477s