乐于分享
好东西不私藏

OpenClaw 完整配置指南:46 分钟视频拆解 Skills、Voice、Memory 核心设置

OpenClaw 完整配置指南:46 分钟视频拆解 Skills、Voice、Memory 核心设置

🎓 OpenClaw 完整配置指南:46 分钟视频拆解 Skills、Voice、Memory 核心设置

"treat openclaw like an untrusted virtual assistant"(01:33)—— 这是整个配置过程的核心安全原则

📺 视频来源

  • 标题
    :OpenClaw Full Course: Setup, Skills, Voice, Memory & More
  • 频道
    :Tech With Tim
  • 观看量
    :131,108 views
  • 发布时间
    :1 month ago
  • 链接
    :https://www.youtube.com/watch?v=vte-fDoZczE
  • 时长
    :46:53

核心观点

这期视频是 OpenClaw 的完整配置教程,作者花费 60-70 小时亲自配置后总结出的最佳实践。核心观点是:将 OpenClaw 视为不受信任的虚拟助手,在享受自动化便利的同时保持安全边界。

视频作者明确指出: 

"if you want to go extreme and make sure that you're very secure, I have a full 50-minute long video that breaks down every step you can take to harden and secure your OpenClaw instance"(01:00-01:06)

这意味着安全配置可以非常深入,但本视频聚焦于基础安全 + 核心功能配置。

关键建议:
  • 运行在 VPS 上而非本地电脑(更安全、更便宜、更易管理)
  • 使用多模型策略(Opus 4.6 处理复杂任务,Codex 处理编码任务)
  • 通过技能系统扩展功能
  • 配置记忆系统实现长期上下文
  • 使用心跳和 Cron 实现自动化任务

🔒 安全最佳实践

核心原则

视频作者强调的安全理念: 

"treat OpenClaw the exact same way. Make sure that if you are connecting it to external resources that those are secure and that you set up separate accounts for"(02:00-02:08)
具体做法:
  1. 不要给 OpenClaw 访问主电脑
  2. 不要给加密密钥或主邮箱访问权限
  3. 为 OpenClaw 创建独立账户
    (如独立的 GitHub 账号)
  4. 只连接你愿意承担风险的资源

VPS 部署优势

视频推荐使用 VPS(虚拟私有服务器)而非本地部署: 

"It's going to have things like regular backups, disaster recovery, you know, fire protection, natural disaster protection, and theft protection that you don't have when you run Open Claw on something like a Mac Mini or your own computer"(02:21-02:33)
VPS 优势:
  • 定期备份
  • 灾难恢复
  • 防火/自然灾害/盗窃保护
  • 成本低(约 $7/月)
  • 随时可关闭,无需投资硬件

Hostinger 一键安装演示

视频展示了使用 Hostinger KVM2 计划的一键安装流程: 

  • 选择 1 个月或 12/24 个月计划(使用优惠码 "techwithtim" 可享额外 10% 折扣)
  • 取消勾选 "ready to use with AI"(手动配置 API Key)
  • 选择服务器位置
  • 输入 API Key(演示使用 Anthropic)
  • 点击 Deploy,自动创建 Docker 容器
重要提示:
"make sure that you have credits that you purchase some credits in whatever platform you're using for the LLM"(08:11-08:16)

作者演示时遇到 API 额度不足的问题,需要先在 Anthropic 控制台购买 $10 额度才能正常使用。


🤖 多模型配置策略

为什么需要多模型?

视频作者解释了多模型策略的必要性: 

"if you run Opus every single day and you're doing a lot, you can spend 100, 200, 300, $500 per day. I know someone, one of my friends was spending about $200 per day running this purely with Opus, which is insanity"(10:32-10:41)
成本对比:
  • Opus 4.6:最强模型,但极贵且有速率限制
  • Codex 5.2:编码任务足够用,几乎无限额度(如果使用 ChatGPT $200/月订阅)

推荐配置策略

视频中的配置指令: 

"I want you to always use the Opus 4.6 model by default. But whenever an instruction is provided to you, I want you to determine whether or not you need that level of intelligence or if you can switch to a cheaper model like codex 5.2"(16:57-17:11)
具体策略:
  1. 默认使用 Opus 4.6
    (处理复杂规划任务)
  2. 编码任务自动切换到 Codex 5.2
  3. 低杠杆任务使用便宜模型
  4. 每次任务开始时告知使用的模型

创建模型切换命令

视频演示了创建 /model 命令: 

【bash】
/model codex# 输出:model set to codex 5.2
配置步骤:
  1. 告诉 AI:"make a command called /model that allows me to switch between the opus 4.6 and codex 5.2"
  2. AI 自动创建命令
  3. 测试命令是否生效

添加 OpenAI Codex 模型

视频展示了 OAuth 连接流程: 

  1. 请求 AI 提供 OAuth 链接
  2. 点击链接登录 OpenAI
  3. 复制重定向 URL
  4. 粘贴回 OpenClaw 完成配置
关键提示:
"OpenAI has made that available to do and not against their terms of service"(09:51-09:55)

使用现有 ChatGPT 订阅的额度是合规的。


📱 Telegram 集成

创建 Bot

视频演示了完整的 Telegram Bot 创建流程:

步骤:
  1. 在 Telegram 搜索 @BotFather(认准蓝色认证标记)
  2. 发送 /newbot
  3. 输入 Bot 名称(如 "Tim AI")
  4. 输入 Bot 用户名(必须以 _bot 结尾,如 "TimA123456_bot")
  5. 复制生成的 Token

配置 Bot

配置命令:
【bash】
# 在 OpenClaw 中运行openclaw telegram connect# 粘贴 Bot Token

配对流程

  1. 点击 AI 提供的配对链接
  2. 在 Telegram 中启动 Bot(发送 /start
  3. 复制配对码
  4. 粘贴回 OpenClaw 完成配对
测试:
在 Telegram 发送 "hi",Bot 回复 "Hey, Telegram is connected. What do you want me to do next?"(19:59-20:03)

创建主题分组

视频演示了如何创建不同主题的分组来组织对话:

步骤:
  1. 在 Telegram 创建新群组(如 "startup ideas")
  2. 添加 Bot 到群组
  3. 将 Bot 提升为管理员(赋予消息访问权限)
  4. 在群组中 @Bot 名称进行测试
配置指令:
"The name of the group chat or the name of the group channel is the topic that I want to discuss in that channel. Don't talk about anything else and only reply or send me messages in the appropriate channels based on the name of them"(24:49-25:02)

这样 Bot 会根据群组名称理解对话主题,保持上下文专注。


🎙️ 语音模式配置

启用语音转录

视频演示了语音功能的配置过程:

初始尝试:
"enable speech to text so you can transcribe my audio messages"(20:13-20:17)
遇到问题: AI 最初要求提供 OpenAI API Key,但作者发现可以使用本地 Whisper: 
"install whisper locally to convert speech to text"(22:21-22:24)

本地 Whisper 配置

配置选项:
  • 选择准确性优先还是速度优先
  • 作者选择 "balanced"(平衡模式)
测试流程:
  1. 从手机发送语音消息(电脑麦克风可能被 OBS 占用)
  2. Bot 自动转录并回复
  3. 验证转录准确性
最终效果:
"Awesome. And finally, it looks like it's working. We have voice mode enabled. I can now send audio messages for it to transcribe"(22:58-23:05)

🛠️ 技能系统详解

什么是 Skill?

视频作者解释了技能的本质: 

"a skill is effectively just a markdown file... it's just a bunch of formatted text that explains what the bot should be able to do"(27:35-27:42)
技能结构:
skills/├── skill-name/│   ├── SKILL.md      # 技能说明文件│   └── scripts/      # 可选的脚本文件│       └── task.py   # Python 脚本

创建自定义技能

视频演示了创建 "hello world" 技能:

指令:
"Make a simple skill that says hello world in five languages. And let's just go five random languages"(30:15-30:20)
生成的技能文件:
【markdown】
---name: hello-world-languagesdescription: Say hello in 5 languages---# Hello World LanguagesSay hello in:1. English2. Spanish3. French4. German5. Japanese
使用方式:
【bash】
/skill hello-world-languages

内置技能

视频提到了一些有用的内置技能: 

  • GitHub
    :代码版本控制
  • Weather
    :天气查询
  • Spotify
    :音乐播放
  • Voice calling
    :语音通话
  • Create skill
    :创建新技能

安装技能

方式一:通过 Gateway 界面
  1. 打开 Gateway Dashboard
  2. 进入 Skills 页面
  3. 点击安装所需技能
方式二:通过对话
"enable this skill" + 复制技能配置

技能市场:Clawhub

视频提到了 Clawhub 技能市场: 

"Claw Hub has a list of pre-built skills that you can use and just build into your bot"(27:07-27:12)
建议:
"before you start just going and adding all of these random skills, I would suggest that you understand what a skill is"(27:14-27:20)

先理解技能原理,再有选择地安装。


🧠 记忆系统配置

记忆文件类型

视频介绍了两种记忆文件:

1. MEMORY.md(长期记忆)
"this is persistent long-term memory that it will always read before it's doing some kind of action"(34:56-35:00)
用途: 存储需要永久记住的信息 2. Daily Memory(每日记忆)
"it has memories for each day... Open Claw is only going to read two days of previous memory"(35:13-35:27)
用途: 记录当天发生的事件 

增强记忆的配置

视频演示了两个关键配置:

配置 1:Memory Flush
compaction.memory_flush.enabled: true
"when the conversation gets too long, OpenClaw will trigger a memory flush prompt. So important context gets written to memory files before compaction drops history"(36:14-36:22)
配置 2:Session Memory
memory.search.experimental_session_memory: true
"lets memory search include recent session transcripts, not just files in memory, improving recall of what just happened"(36:23-36:29)

向量记忆搜索(高级)

视频展示了使用 QMD 后端的向量搜索配置: 

"enable vector memory search using a QMD backend, which is significantly better at searching through the memory than the default backend service"(37:09-37:16)
配置步骤:
  1. 复制官方文档中的配置内容
  2. 告诉 AI:"enable this"
  3. AI 自动安装依赖并配置
效果: 记忆搜索更准确、更高效 

📁 核心配置文件

USER.md(用户信息)

用途: 存储关于用户的信息 视频演示的采访方式:
"give me an interview and ask me questions on what you want"(38:43-38:46)
示例问题:
  • 你的名字是什么?
  • 怎么称呼你?
  • 你的时区?
  • 工作时间?
  • 你的目标?
示例回答:
"My name is Tim. You can call me Master Tim. My pronouns are the normal ones, he, him. My time zone is Asia, Dubai. I usually work from 10:00 a.m. to 1:00 in the morning. My goal is to grow my YouTube channel"(39:40-39:55)

IDENTITY.md(AI 身份)

用途: 定义 AI 的行为方式、语气、边界 默认内容包含:
  • Core Truths(核心原则)
  • Boundaries(边界)
  • Vibe(风格)
  • Continuity(连续性说明)

SOUL.md(灵魂文件)

用途: 更深层的行为指导 内容示例:
"each session, you wake up fresh. These files are your memory. Read them. Update them."(40:48-40:51)

TOOLS.md(工具配置)

用途: 存储环境特定配置 示例内容:
  • SSH 主机和别名
  • 首选语音(TTS)
  • 扬声器/房间名称
  • 设备昵称

💓 心跳机制(Heartbeat)

什么是 Heartbeat?

"you can have the Claudebot triggered to wake up effectively every set number of minutes"(41:28-41:32)
默认频率: 30 分钟(需要手动开启) 

配置 Heartbeat

视频中的配置指令:
"update your heartbeat file such that anytime you wake up you review any of the mistakes that you've made previously and start making improvements and fixing those mistakes"(41:51-41:58)
生成的 HEARTBEAT.md:
【markdown】
On every heartbeat review recent mistakes, issues, and proposed fixes.When doing this review spawn multiple sub agents and run the tasks in parallel.

启用 Heartbeat

配置命令:
"turn on the heartbeat and enable it every 30 minutes"(43:58-44:02)
Heartbeat 适用场景:
  • 检查邮件
  • 查看日历
  • 自我改进审查
  • 定期检查通知
不适用场景:
  • 长时间运行任务
  • 精确时间要求(用 Cron)

⏰ Cron 定时任务

Cron vs Heartbeat

Cron 特点:
"a cron is a task that can run at a set time at a set frequency"(44:34-44:37)
示例:
  • 每天早上 9:00 提醒
  • 每天备份数据库
  • 特定时间发送消息

创建 Cron

视频演示:
"in five minutes remind me that I need to finish recording this video"(44:58-45:03)
结果:
  • 自动创建一次性 Cron
  • 4 分钟后执行
  • 可在 Gateway 查看历史

个人 Cron 示例

视频作者分享了自己的 Cron 配置: 

  • 每天早上 9:00 回顾昨天工作
  • 每天 3 次定期更新
  • 各种提醒任务

🔧 Docker 容器访问

为什么需要 Docker 命令?

"if you just type openclaw nothing's going to happen because this is running inside of a docker container"(09:46-09:50)

访问 Docker 容器的命令

步骤 1:查看容器
【bash】
docker ps
步骤 2:进入容器
【bash】
docker exec -it [容器 ID] /bin/bash
步骤 3:在容器内运行 OpenClaw
【bash】
openclaw

VS Code 远程连接

视频演示了使用 VS Code 远程连接服务器:

步骤:
  1. Ctrl+Shift+P
     → "Add New SSH Host"
  2. 输入 SSH 命令(如 ssh root@IP
  3. Ctrl+Shift+P
     → "Connect to Host"
  4. 选择刚添加的主机
  5. 输入密码
  6. 打开文件夹:/docker/openclaw-data/openclaw
查看文件结构:
openclaw/├── credentials/├── cron/└── workspace/        ├── memory/        │   └── YYYY-MM-DD.md        ├── MEMORY.md        ├── USER.md        ├── IDENTITY.md        ├── SOUL.md        ├── TOOLS.md        └── HEARTBEAT.md

⚠️ 注意事项

成本控制

问题:
"one of my friends was spending about $200 per day running this purely with Opus"(10:38-10:41)
解决方案:
  1. 设置月度预算限制(如 $100)
  2. 配置消费通知邮件
  3. 使用多模型策略

API 额度

常见问题:
"my credit balance is too low to access the anthropic API"(07:58-08:02)
解决:
  • 在对应平台购买额度
  • 先购买 $10 测试

语音转录问题

遇到的问题:
  • 电脑麦克风被 OBS 占用
  • 语音消息空白
解决:
  • 从手机发送语音消息
  • 确保麦克风可用

Bot 群组权限

必要设置:
  • 将 Bot 提升为管理员
  • 赋予消息访问权限
  • 在群组中需要 @Bot 才能触发回复

可复现的工作流

完整配置清单

【yaml】
# 1. 安全配置security:    - 运行在 VPS 上    - 使用独立账户    - 不连接敏感资源# 2. 模型配置models:    primary: opus-4.6    fallback: codex-5.2    strategy: "复杂任务用 Opus,编码用 Codex"# 3. Telegram 集成telegram:    - 创建 Bot(@BotFather)    - 配置 Token    - 完成配对    - 创建主题群组# 4. 语音模式voice:    - 安装 Whisper 本地版    - 选择平衡模式    - 测试转录# 5. 记忆优化memory:    compaction.memory_flush.enabled: true    memory.search.experimental_session_memory: true    vector_search: qmd-backend# 6. 心跳机制heartbeat:    enabled: true    interval: 30m    task: "审查错误并改进"# 7. 身份配置files:    - USER.md(采访方式填写)    - IDENTITY.md    - SOUL.md    - TOOLS.md

关键设置说明

  1. 多模型策略
    :节省成本的核心
  2. 记忆优化
    :提升长期表现
  3. 心跳机制
    :实现自动化改进
  4. 主题分组
    :保持对话专注

总结

这期 46 分钟的视频是 OpenClaw 最全面的配置教程之一。视频作者基于 60-70 小时的实际配置经验,系统地讲解了从安全部署到高级功能的全流程。

视频的核心价值:
  1. 安全优先
    :始终将 OpenClaw 视为不受信任的助手
  2. 成本意识
    :多模型策略可节省数百美元/天
  3. 实用导向
    :每个配置都有实际应用场景
  4. 可扩展性
    :理解原理后可自行定制
适合人群:
  • 刚安装 OpenClaw 需要完整配置指南的用户
  • 想优化现有配置提升效率的用户
  • 关心成本控制和安全的用户
不适合:
  • 只需要简单 10 分钟快速上手的用户(视频较详细)
  • 不打算长期使用 OpenClaw 的用户

配置模板我整理好了 需要的朋友评论区扣「模板」 或者直接私信我 关注我 

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