当前位置:首页>python>《效率干货:python调用PaddleOCR-VL-1.5大模型api批量精准识别采购装箱单,彻底告别人工录入,实现摸鱼自由get√》

《效率干货:python调用PaddleOCR-VL-1.5大模型api批量精准识别采购装箱单,彻底告别人工录入,实现摸鱼自由get√》

  • 2026-02-27 09:18:44
《效率干货:python调用PaddleOCR-VL-1.5大模型api批量精准识别采购装箱单,彻底告别人工录入,实现摸鱼自由get√》

“带你横跨办公自动化的数据江海”

@摸鱼

闻道有先后,术业有专攻。各位大佬们大家好!~我是你们的老朋友摸鱼~,本人在十多年的日常工作中摸爬滚打攒了不少Python办公自动化的实用项目技巧,自创立"码海听潮"公众号以来,已经陆续分享近80篇原创干货文章啦!里面满满的办公实操干货,希望能与各位大佬共同探讨办公效率提升之道,实现不加班自由。

好叻,多了不说,少了不唠,咱直接上干货。

办公需求场景

从崩溃到优雅的进化

有一个神秘的图片文件夹, 里面有某外贸公司一天共计220张的全球采购装箱单图片,现在的需求是把这些图片上的Purchase Order No(采购单号)、Made in(产地) 、Qty Total(采购数量)的信息进行提取并保存为excel表方便汇总、要是这种类似的需求你的Big Boss安排你去完成,请问阁下该如何应对?

需求的图片文件夹和水印图片列表如下图:

  • 采购装箱单图片文件夹

  • 采购装箱单图片

办公痛点分析

01

 痛点1:重复劳动多,效率极低

    • 机械重复: 220张图,每张都要打开、定位、扫视、打字、保存、关闭。这种高密度的机械操作通常在30张之后大脑就开始自动疲劳

    02

     痛点2:极易出错

      • 数着数着容易忘记哪张图录了、哪张图没录,需要停下来做标记

      03

      痛点3:非标格式的解析障碍

      • 字段位置不固定: 虽然是“装箱单”,但不同国家供应商的格式天差地别。有的PO号在右上角,有的在标题栏,有的藏在备注里。

      由此可见若操作成百上千张装箱单图片的话整个操作流程繁琐且耗时,高频次的鼠标点击和键盘输入使操作者手指疲劳,堪称"键盘敲冒烟"式的体力劳动,加上人工疲劳操作极易导致遗漏文件夹。于是乎这时候,按以往的 “解题套路”,Python 的专属 BGM 该响起来了 ——go~ go~ go~,救苦救难的大救星这不就来了!!

      @摸鱼

      问题拆解思路

      1.遍历装箱单图片文件夹→

      2.调用Paddleocr-Vl-1.5大模型api精准提取指定字段信息

      3.保存提取的信息写入excel表格

      下面,我就用python代码让excel见识一下,什么叫"传统文化遇上赛博效率"(仅展示部分代码,非完整代码,需完整代码看文章末尾说明~)

      import sysimport osimport jsonfrom PyQt6.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout,                             QHBoxLayoutQPushButtonQLabelQLineEdit                            QTextEditQFileDialogQMessageBoxQGroupBox,                            QGridLayoutQCheckBox)from PyQt6.QtCore import Qtfrom PyQt6.QtGui import QTextCursorclass Config:    """配置管理类"""    CONFIG_FILE = "config.json"    @classmethod    def load(cls):        """加载配置"""        default_config = {            "api_url""",            "token""",            "recursive"True,            "output_file""采购装箱单提取结果.xlsx"        }        try:            if os.path.exists(cls.CONFIG_FILE):                with open(cls.CONFIG_FILE, 'r', encoding='utf-8') as f:                    config = json.load(f)                    for key in default_config:                        if key not in config:                            config[key] = default_config[key]                    return config        except Exception as e:            print(f"加载配置文件失败: {e}")        return default_config    @classmethod    def save(cls, api_url, token, recursive, output_file):        """保存配置"""        try:            config = {                "api_url": api_url,                "token": token,                "recursive": recursive,                "output_file": output_file            }            with open(cls.CONFIG_FILE, 'w', encoding='utf-8') as f:                json.dump(config, f, ensure_ascii=False, indent=2)            return True        except Exception as e:            print(f"保存配置文件失败: {e}")            return Falseclass MainWindow(QMainWindow):    """主窗口"""    def __init__(self):        super().__init__()        self.config = Config.load()        self.init_ui()    def init_ui(self):        """初始化UI"""        self.setWindowTitle("采购装箱单信息提取工具(欢迎关注微信公众号:码海听潮)")        self.setMinimumSize(800650)        self.setStyleSheet("""            QMainWindow {                background-color: #f5f7fa;            }            QGroupBox {                font-weight: bold;                border: 2px solid #e1e9f0;                border-radius: 8px;                margin-top: 10px;                padding-top: 10px;                background-color: white;            }            QGroupBox::title {                subcontrol-origin: margin;                left: 10px;                padding: 0 10px 0 10px;                color: #2c3e50;            }            QPushButton {                background-color: #3498db;                color: white;                border: none;                padding: 8px 16px;                border-radius: 5px;                font-weight: bold;                min-width: 100px;            }            QPushButton:hover {                background-color: #2980b9;            }            QPushButton:pressed {                background-color: #1c6ea4;            }            QPushButton:disabled {                background-color: #bdc3c7;            }            QLineEdit {                padding: 8px;                border: 2px solid #e1e9f0;                border-radius: 5px;                background-color: white;                selection-background-color: #3498db;            }            QLineEdit:focus {                border-color: #3498db;            }            QTextEdit {                border: 2px solid #e1e9f0;                border-radius: 5px;                background-color: white;                font-family: Consolas, Monaco, monospace;                font-size: 12px;            }            QCheckBox {                spacing: 8px;            }            QCheckBox::indicator {                width: 18px;                height: 18px;                border: 2px solid #e1e9f0;                border-radius: 3px;                background-color: white;            }            QCheckBox::indicator:checked {                background-color: #3498db;                border-color: #3498db;            }            QLabel {                color: #2c3e50;            }        """)        central_widget = QWidget()        self.setCentralWidget(central_widget)        main_layout = QVBoxLayout(central_widget)        main_layout.setSpacing(15)        main_layout.setContentsMargins(20202020)        config_group = QGroupBox("配置参数")        config_layout = QGridLayout(config_group)        config_layout.setVerticalSpacing(12)        config_layout.setHorizontalSpacing(10)        config_layout.addWidget(QLabel("输入目录:"), 00)        self.input_dir_edit = QLineEdit()        self.input_dir_edit.setPlaceholderText("请选择包含图片/PDF文件的目录")        config_layout.addWidget(self.input_dir_edit, 01)        self.browse_input_btn = QPushButton("浏览...")        self.browse_input_btn.clicked.connect(self.browse_input_dir)        self.browse_input_btn.setFixedWidth(80)        config_layout.addWidget(self.browse_input_btn, 02)        config_layout.addWidget(QLabel("输出Excel:"), 10)        self.output_file_edit = QLineEdit()        self.output_file_edit.setText(self.config.get("output_file""采购单提取结果.xlsx"))        config_layout.addWidget(self.output_file_edit, 11)        self.browse_output_btn = QPushButton("浏览...")        self.browse_output_btn.clicked.connect(self.browse_output_file)        self.browse_output_btn.setFixedWidth(80)        config_layout.addWidget(self.browse_output_btn, 12)        config_layout.addWidget(QLabel("API地址:"), 20)        self.api_url_edit = QLineEdit()        self.api_url_edit.setText(self.config.get("api_url""https://38.com/layout-parsing"))        config_layout.addWidget(self.api_url_edit, 2112)        config_layout.addWidget(QLabel("Token:"), 30)        self.token_edit = QLineEdit()        self.token_edit.setText(self.config.get("token""db65aec850709aa083c4"))        self.token_edit.setEchoMode(QLineEdit.EchoMode.Password)        config_layout.addWidget(self.token_edit, 3112)        self.recursive_checkbox = QCheckBox("递归查找子目录")        self.recursive_checkbox.setChecked(self.config.get("recursive"True))        config_layout.addWidget(self.recursive_checkbox, 41)        main_layout.addWidget(config_group)        button_layout = QHBoxLayout()        button_layout.setSpacing(15)        self.start_btn = QPushButton("开始处理")        self.start_btn.setMinimumHeight(40)        self.start_btn.clicked.connect(self.start_processing)        button_layout.addWidget(self.start_btn)        self.clear_btn = QPushButton("清空日志")        self.clear_btn.setMinimumHeight(40)        self.clear_btn.clicked.connect(self.clear_log)        button_layout.addWidget(self.clear_btn)        self.save_config_btn = QPushButton("保存配置")        self.save_config_btn.setMinimumHeight(40)        self.save_config_btn.clicked.connect(self.save_configuration)        self.save_config_btn.setStyleSheet("background-color: #2ecc71;")        button_layout.addWidget(self.save_config_btn)        main_layout.addLayout(button_layout)        log_group = QGroupBox("处理日志")        log_layout = QVBoxLayout(log_group)        self.log_text = QTextEdit()        self.log_text.setReadOnly(True)        self.log_text.setMinimumHeight(350)        log_layout.addWidget(self.log_text)        main_layout.addWidget(log_group)        self.status_label = QLabel("就绪")        self.status_label.setStyleSheet("color: #27ae60; font-weight: bold; padding: 5px;")        main_layout.addWidget(self.status_label)    def browse_input_dir(self):        """浏览输入目录"""        directory = QFileDialog.getExistingDirectory(            self            "选择输入目录",            "",            QFileDialog.Option.ShowDirsOnly        )        if directory:            self.input_dir_edit.setText(directory.replace('/', '\\'))    def browse_output_file(self):        """浏览输出文件"""        file_path, _ = QFileDialog.getSaveFileName(            self,            "保存Excel文件",            self.output_file_edit.text() or "采购单提取结果.xlsx",            "Excel文件 (*.xlsx)"        )        if file_path:            self.output_file_edit.setText(file_path)    def save_configuration(self):        """保存配置到文件"""        api_url = self.api_url_edit.text().strip()        token = self.token_edit.text().strip()        recursive = self.recursive_checkbox.isChecked()        output_file = self.output_file_edit.text().strip()        if Config.save(api_url, token, recursive, output_file):            self.append_log("✓ 配置已保存")            QMessageBox.information(self"保存成功""配置已成功保存!")        else:            QMessageBox.warning(self"保存失败""配置保存失败!")    def start_processing(self):        """开始处理"""        input_dir = self.input_dir_edit.text().strip()        if not input_dir:            QMessageBox.warning(self"警告""请选择输入目录!")            return        if not os.path.exists(input_dir):            QMessageBox.warning(self"警告""输入目录不存在!")            return        output_file = self.output_file_edit.text().strip()        if not output_file:            output_file = "采购单提取结果.xlsx"            self.output_file_edit.setText(output_file)        api_url = self.api_url_edit.text().strip()        if not api_url:            QMessageBox.warning(self"警告""请输入API地址!")            return        token = self.token_edit.text().strip()        if not token:            QMessageBox.warning(self"警告""请输入Token!")            return        self.save_configuration()        self.status_label.setText("正在处理中...")        self.status_label.setStyleSheet("color: #e67e22; font-weight: bold; padding: 5px;")        self.append_log("开始批量处理...")        self.append_log("=" * 50)        QMessageBox.information(            self,            "提示",            "处理功能已启动,请查看日志输出。\n\n(注意:实际处理功能需要集成API调用等业务逻辑)"        )    def append_log(self, message):        """追加日志"""        self.log_text.append(message)        cursor = self.log_text.textCursor()        cursor.movePosition(QTextCursor.MoveOperation.End)        self.log_text.setTextCursor(cursor)    def clear_log(self):        """清空日志"""        self.log_text.clear()def main():    """主函数"""    app = QApplication(sys.argv)    window = MainWindow()    window.show()    sys.exit(app.exec())if __name__ == "__main__":    main()

      最终将所有的装箱单图片按照指定字段精准提取了信息,完美实现了之前既定的需求...

      通过上面Python自动化脚本,仅用几分钟的时间就完成原需手动操作数小时甚至数天的工作任务。从最初准备手动人工机械操作的麻木到用python实现高效自动化的畅快,工作效率获得指数级提升,终于实现了不加班熬夜的自由!

      大佬们也可以举一反三,参照上面的代码思路根据自己工作中的实际情况来具体问题具体分析,实现自己定制化的需求。

      结语

      当Python遇见办公,牛马打工人终于笑出了猪叫声

      【职场人必看】每天早上一睁眼,想到又要面对:

      1.📊 堆积如山的Excel表格

      2.📑 机械重复的复制粘贴

      3.✍️ 永远改不完的各类文档

      4.诸如此类的更多........

      是不是连Ctrl+Alt+Delete的心都有了?

      别慌!别急,摸鱼这位“职场外挂”已经带着Python代码来拯救你了!

      友情提示:考虑到没有python环境的朋友需要打包好的成品exe,摸鱼早已贴心打包好,本篇文章代码打包的exe截图如下:

      另外,《码海听潮》公众号所有文章码和exe程序已打包好上传绿联nas私有云,有需要的大佬扫一扫上面博主的个人微信二维码,需要的大佬需支付9.9元永久拥有公众号资源(写原创干货费时费力,属实不易),邀请您进入社区群获取下载链接!!,群内提供python办公自动化交流问题,解决问题,且码海听潮微信公众号文章发布会第一时间会更新到群里,非诚勿扰哈!

      码海听潮官方社区群如下:

      赶紧微信扫一扫下方二维码添加摸鱼君微信

      最新文章

      随机文章

      基本 文件 流程 错误 SQL 调试
      1. 请求信息 : 2026-03-01 01:10:23 HTTP/2.0 GET : https://f.mffb.com.cn/a/475418.html
      2. 运行时间 : 0.167720s [ 吞吐率:5.96req/s ] 内存消耗:4,649.66kb 文件加载:140
      3. 缓存信息 : 0 reads,0 writes
      4. 会话信息 : SESSION_ID=9a4251f047ac8ab20af980f272c92cef
      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.001030s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
      2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001762s ]
      3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000711s ]
      4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000526s ]
      5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001244s ]
      6. SELECT * FROM `set` [ RunTime:0.000474s ]
      7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001423s ]
      8. SELECT * FROM `article` WHERE `id` = 475418 LIMIT 1 [ RunTime:0.000985s ]
      9. UPDATE `article` SET `lasttime` = 1772298623 WHERE `id` = 475418 [ RunTime:0.001905s ]
      10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000532s ]
      11. SELECT * FROM `article` WHERE `id` < 475418 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000797s ]
      12. SELECT * FROM `article` WHERE `id` > 475418 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000739s ]
      13. SELECT * FROM `article` WHERE `id` < 475418 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.001430s ]
      14. SELECT * FROM `article` WHERE `id` < 475418 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.001915s ]
      15. SELECT * FROM `article` WHERE `id` < 475418 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.001613s ]
      0.170614s