当前位置:首页>python>Python邪修:用AI逆向复刻别人的窗体

Python邪修:用AI逆向复刻别人的窗体

  • 2026-04-03 03:32:41
Python邪修:用AI逆向复刻别人的窗体

当代码能力不够时,让AI帮你"盗梦"别人的界面

前言:为什么要做这件事?

在日常工作中,我们经常遇到这样的情况:看到一个很棒的Excel处理工具,但只有exe文件,没有源代码。或者在网上看到一个截图,觉得界面设计很合理,想借鉴但又不想从零开始写。

这时候,Python邪修的第一招就派上用场了:用AI逆向复刻别人的界面和逻辑

第一式:火眼金睛——观察目标窗体

假设我们在网上看到这样一个Excel处理工具的截图:

我们要做的就是:对着这张图,让AI帮我们生成完全一样的界面和功能

第二式:AI助阵——让AI帮你写界面

把截图描述给AI,加上这样的提示词:

请用Python tkinter实现一个Excel处理工具,包含以下功能:1. 文件选择区域:显示当前文件路径,有"选择文件"按钮2. 处理选项:复选框(删除重复行、填充空值)、单选框(排序选项)3. 控制按钮:开始处理、导出结果4. 日志窗口:显示处理进度和状态要求:- 使用面向对象编程- 包含完整的Excel处理逻辑(pandas)- 添加异常处理- 界面美观,布局合理

第三式:AI生成的代码(基础版)

AI会生成类似这样的代码:

import tkinter as tkfrom tkinter import ttk, filedialog, messageboximport pandas as pdimport osclass ExcelTool:    def __init__(self, root):        self.root = root        self.root.title("Excel数据处理工具 v1.0")        self.root.geometry("800x600")        # 数据存储        self.df = None        self.file_path = None        # 创建界面        self.create_widgets()        # 日志输出        self.log("就绪,请选择Excel文件...")    def create_widgets(self):        """创建所有界面组件"""        # 1. 文件选择区域        file_frame = ttk.LabelFrame(self.root, text="文件选择", padding=10)        file_frame.pack(fill="x", padx=10, pady=5)        self.file_label = ttk.Label(file_frame, text="当前文件:未选择"                                     foreground="gray")        self.file_label.pack(side="left", fill="x", expand=True)        ttk.Button(file_frame, text="选择Excel文件"                  command=self.select_file).pack(side="right")        # 2. 处理选项区域        options_frame = ttk.LabelFrame(self.root, text="处理选项", padding=10)        options_frame.pack(fill="x", padx=10, pady=5)        # 复选框        self.del_duplicates = tk.BooleanVar()        ttk.Checkbutton(options_frame, text="删除重复行"                       variable=self.del_duplicates).pack(anchor="w")        self.fill_na = tk.BooleanVar()        ttk.Checkbutton(options_frame, text="填充空值"                       variable=self.fill_na).pack(anchor="w")        # 单选框        self.sort_option = tk.StringVar(value="none")        ttk.Radiobutton(options_frame, text="按列排序"                       variable=self.sort_option, value="sort").pack(anchor="w")        # 3. 按钮区域        btn_frame = ttk.Frame(self.root)        btn_frame.pack(fill="x", padx=10, pady=10)        ttk.Button(btn_frame, text="开始处理"                  command=self.process_data).pack(side="left", padx=5)        ttk.Button(btn_frame, text="导出结果"                  command=self.export_data).pack(side="left", padx=5)        # 4. 日志区域        log_frame = ttk.LabelFrame(self.root, text="处理日志", padding=10)        log_frame.pack(fill="both", expand=True, padx=10, pady=5)        self.log_text = tk.Text(log_frame, height=10, state="disabled")        self.log_text.pack(fill="both", expand=True)        # 滚动条        scrollbar = ttk.Scrollbar(self.log_text)        scrollbar.pack(side="right", fill="y")        self.log_text.config(yscrollcommand=scrollbar.set)        scrollbar.config(command=self.log_text.yview)    def log(self, message):        """输出日志"""        self.log_text.config(state="normal")        self.log_text.insert("end"f"> {message}\n")        self.log_text.see("end")        self.log_text.config(state="disabled")        self.root.update()    def select_file(self):        """选择Excel文件"""        file_path = filedialog.askopenfilename(            title="选择Excel文件",            filetypes=[("Excel文件""*.xlsx *.xls"), ("所有文件""*.*")]        )        if file_path:            try:                self.file_path = file_path                self.df = pd.read_excel(file_path)                self.file_label.config(                    text=f"当前文件:{os.path.basename(file_path)}",                    foreground="green"                )                self.log(f"成功加载文件:{os.path.basename(file_path)}")                self.log(f"数据维度:{self.df.shape[0]}行 × {self.df.shape[1]}列")            except Exception as e:                self.log(f"加载失败:{str(e)}")                messagebox.showerror("错误"f"无法读取文件:{str(e)}")    def process_data(self):        """处理数据"""        if self.df is None:            messagebox.showwarning("警告""请先选择Excel文件")            return        self.log("=" * 50)        self.log("开始处理数据...")        # 复制原始数据        processed_df = self.df.copy()        # 删除重复行        if self.del_duplicates.get():            before = len(processed_df)            processed_df = processed_df.drop_duplicates()            after = len(processed_df)            self.log(f"删除重复行:{before} → {after} 行,删除了 {before - after} 行")        # 填充空值        if self.fill_na.get():            before_nulls = processed_df.isnull().sum().sum()            processed_df = processed_df.fillna("")            after_nulls = processed_df.isnull().sum().sum()            self.log(f"填充空值:处理了 {before_nulls} 个空单元格")        # 排序        if self.sort_option.get() == "sort":            # 让用户选择排序列            sort_col = self.ask_for_column("请输入要排序的列名:")            if sort_col and sort_col in processed_df.columns:                processed_df = processed_df.sort_values(by=sort_col)                self.log(f"按列 '{sort_col}' 排序完成")        # 更新数据        self.df = processed_df        self.log(f"处理完成!当前数据:{self.df.shape[0]}行 × {self.df.shape[1]}列")        self.log("=" * 50)        messagebox.showinfo("完成""数据处理完成!")    def ask_for_column(self, prompt):        """弹出输入框获取列名"""        from tkinter.simpledialog import askstring        return askstring("输入", prompt)    def export_data(self):        """导出数据"""        if self.df is None:            messagebox.showwarning("警告""没有可导出的数据")            return        file_path = filedialog.asksaveasfilename(            title="保存为",            defaultextension=".xlsx",            filetypes=[("Excel文件""*.xlsx"), ("CSV文件""*.csv")]        )        if file_path:            try:                if file_path.endswith('.xlsx'):                    self.df.to_excel(file_path, index=False)                else:                    self.df.to_csv(file_path, index=False, encoding='utf-8-sig')                self.log(f"导出成功:{os.path.basename(file_path)}")                messagebox.showinfo("成功"f"文件已保存到:{file_path}")            except Exception as e:                self.log(f"导出失败:{str(e)}")                messagebox.showerror("错误"f"保存失败:{str(e)}")if __name__ == "__main__":    root = tk.Tk()    app = ExcelTool(root)    root.mainloop()

第四式:邪修进阶——添加高级功能

AI只能生成基础框架,真正的"邪修"在于添加别人没有的功能:

1. 拖拽文件支持

def add_drag_drop_support(self):    """添加拖拽文件支持"""    # 需要安装:pip install tkinterdnd2    from tkinterdnd2 import TkinterDnD    self.root.drop_target_register('*')    self.root.dnd_bind('<<Drop>>'self.on_drag_drop)def on_drag_drop(self, event):    file_path = event.data.strip('{}')    if file_path.endswith(('.xlsx''.xls')):        self.file_path = file_path        self.df = pd.read_excel(file_path)        self.log(f"拖拽加载文件:{os.path.basename(file_path)}")

2. 数据预览表格

def add_data_preview(self):    """添加数据预览表格"""    preview_frame = ttk.LabelFrame(self.root, text="数据预览", padding=10)    preview_frame.pack(fill="both", expand=True, padx=10, pady=5)    # 创建Treeview表格    columns = list(self.df.columns) if self.df is not None else []    self.tree = ttk.Treeview(preview_frame, columns=columns, show="headings")    # 添加滚动条    v_scroll = ttk.Scrollbar(preview_frame, orient="vertical", command=self.tree.yview)    h_scroll = ttk.Scrollbar(preview_frame, orient="horizontal", command=self.tree.xview)    self.tree.configure(yscrollcommand=v_scroll.set, xscrollcommand=h_scroll.set)    self.tree.grid(row=0, column=0, sticky="nsew")    v_scroll.grid(row=0, column=1, sticky="ns")    h_scroll.grid(row=1, column=0, sticky="ew")    preview_frame.grid_rowconfigure(0, weight=1)    preview_frame.grid_columnconfigure(0, weight=1)    self.update_preview()def update_preview(self):    """更新预览表格"""    if self.df is not None:        # 清空现有数据        for item in self.tree.get_children():            self.tree.delete(item)        # 设置列头        columns = list(self.df.columns)        self.tree["columns"] = columns        for col in columns:            self.tree.heading(col, text=col)            self.tree.column(col, width=100)        # 显示前100行        for idx, row in self.df.head(100).iterrows():            values = [str(row[col]) for col in columns]            self.tree.insert("""end", values=values)

3. 进度条显示

def add_progress_bar(self):    """添加进度条"""    self.progress = ttk.Progressbar(self.root, mode='indeterminate')    self.progress.pack(fill="x", padx=10, pady=5)def process_with_progress(self):    """带进度条的处理"""    self.progress.start()    try:        # 处理逻辑        self.process_data()    finally:        self.progress.stop()

第五式:邪修心法——精髓总结

1. 逆向思维

不要从零开始写,而是先找参考,再让AI帮你实现。网上有大量现成的界面设计,截图就是最好的需求文档。

2. AI协作技巧

  • 给AI看截图:直接上传图片让AI识别布局

  • 描述要具体:"左边是文件选择区,右边是选项面板"比"做个好看的界面"效果好

  • 分步骤实现:先让AI生成框架,再逐步添加功能

3. 代码整合策略

# 将AI生成的代码整合到自己的项目中# 1. 复制基础框架# 2. 替换业务逻辑# 3. 添加个性化功能# 4. 调整布局细节

4. 常见坑点解决

问题
解决方案
tkinter布局混乱
使用Frame分层,pack/grid不要混用
Excel文件太大加载慢
添加进度条,使用chunksize分批读取
中文显示乱码
to_excel时指定engine='openpyxl'
窗口卡死
耗时操作使用threading

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-07 22:57:46 HTTP/2.0 GET : https://f.mffb.com.cn/a/483983.html
  2. 运行时间 : 0.084272s [ 吞吐率:11.87req/s ] 内存消耗:4,895.63kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=a05e7cb9fbf660f638b13f0057cef12b
  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.000561s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000693s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000301s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000294s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000626s ]
  6. SELECT * FROM `set` [ RunTime:0.000205s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000583s ]
  8. SELECT * FROM `article` WHERE `id` = 483983 LIMIT 1 [ RunTime:0.000445s ]
  9. UPDATE `article` SET `lasttime` = 1775573866 WHERE `id` = 483983 [ RunTime:0.005302s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000252s ]
  11. SELECT * FROM `article` WHERE `id` < 483983 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000467s ]
  12. SELECT * FROM `article` WHERE `id` > 483983 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000500s ]
  13. SELECT * FROM `article` WHERE `id` < 483983 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.001217s ]
  14. SELECT * FROM `article` WHERE `id` < 483983 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.001537s ]
  15. SELECT * FROM `article` WHERE `id` < 483983 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.001465s ]
0.085911s