切换导航
🛠️ 开发工具箱
首页
时间戳转换
JSON格式化
Base64互转
API测试
PDF转Word
图片压缩
AI翻译
心得分享
心得分享
分享开发心得和技术经验
Vue3 Composition API实战教程
前端开发
2026-04-09 09:54
Vue3 Composition API实战教程 Vue3引入的Composition API是对Vue2 Options API的一次重大革新。它提供了更灵活的代码组织方式,使逻辑复用更加简单,TypeScript支持更加完善。本文将通过实际案例带你全面掌握Composition API的使用方法。 一、为什么需要Composition API 在Vue2的Options API中,一个组...
CSS Flexbox布局完全指南:从入门到精通
前端开发
2026-04-08 09:53
CSS Flexbox布局完全指南 Flexbox(弹性盒模型)是CSS3中引入的一种强大的布局模式,它使得各种页面布局变得简单而灵活。无论是在实现居中对齐、等高列、还是复杂的导航布局,Flexbox都能提供优雅的解决方案。本文将从基础概念出发,逐步深入到高级用法,帮助你全面掌握Flexbox布局技术。 一、Flexbox基础概念 Flexbox的核心思想是让容器能够改变其子元素的宽度、高度...
深入理解JavaScript闭包与作用域链
前端开发
2026-04-08 09:53
深入理解JavaScript闭包与作用域链 闭包(Closure)是JavaScript中最重要也最容易被误解的概念之一。理解闭包不仅对于编写高质量的JavaScript代码至关重要,也是面试中经常出现的核心知识点。本文将帮助你从底层原理出发,真正理解闭包和作用域链的工作机制。 一、执行上下文与词法环境 要理解闭包,首先需要理解JavaScript的执行上下文(Execution Conte...
VS Code高效开发:必装插件与配置技巧
工具使用
2026-04-07 10:10
VS Code高效开发:必装插件与配置技巧 Visual Studio Code是当今最流行的代码编辑器,它轻量、免费、插件丰富。但是要让VS Code真正发挥威力,需要正确的插件配置和使用技巧。本文将分享我个人多年使用VS Code积累的经验,包括必装插件推荐、效率配置和实用快捷键,帮助你将开发效率提升到新的高度。 一、必装插件推荐 1. 代码质量与格式化 ESLint - JavaS...
Node.js事件循环与异步编程深度解析
后端开发
2026-04-06 02:07
Node.js事件循环与异步编程深度解析 Node.js的核心设计理念是单线程、非阻塞I/O,这一切都建立在事件循环(Event Loop)机制之上。深入理解事件循环的工作原理,对于编写高性能的Node.js应用至关重要。本文将从事件循环的底层机制出发,结合实际案例,帮你彻底掌握Node.js异步编程。 一、事件循环的六个阶段 Node.js的事件循环分为六个主要阶段,每个阶段都有一个先进先...
PHP8新特性全面解析与实战应用
后端开发
2026-04-04 10:07
PHP8新特性全面解析与实战应用 PHP8是PHP语言的重大里程碑版本,带来了许多令人兴奋的新特性、性能提升和语法改进。从JIT编译器到联合类型,从命名参数到Match表达式,PHP8让PHP编程变得更加现代和高效。本文将全面解析PHP8的核心新特性,并通过实际代码示例展示如何在项目中应用这些特性。 一、JIT编译器 PHP8引入了JIT(Just-In-Time)编译器,这是最底层的性能提...
ThinkPHP5框架学习笔记
后端开发
2026-03-25 23:10
ThinkPHP5框架学习笔记 ThinkPHP是国内使用最广泛的PHP框架之一,以其简洁的语法、丰富的功能和完善的文档深受开发者喜爱。ThinkPHP5是框架的一次重大升级,全面拥抱了PHP7的新特性,引入了更多现代化设计。本文将系统地介绍ThinkPHP5的核心概念和实战技巧。 一、MVC架构详解 ThinkPHP遵循MVC(Model-View-Controller)设计模式,将应用分...
Linux常用命令总结
DevOps运维
2026-03-24 23:10
Linux常用命令完全指南 Linux是服务端开发和运维的基础平台,熟练使用Linux命令行是每个开发者的必备技能。本文将系统分类介绍最常用的Linux命令,从文件操作到系统监控,从网络调试到权限管理,每个命令都配有实际使用示例,帮助你快速上手Linux命令行操作。 一、文件与目录操作 1. 目录导航与文件查看 # 目录切换 cd /var/log # 切换到绝对路径 c...
前端性能优化技巧
前端开发
2026-03-23 23:10
前端性能优化技巧大全 前端性能直接影响用户体验和商业转化率。研究表明,页面加载时间每增加1秒,转化率就会下降7%。Google也将页面速度作为搜索排名的因素之一。本文将从网络层、渲染层、代码层三个维度,系统地介绍前端性能优化的策略和具体实施方法。 一、网络层优化 1. 减少HTTP请求 每个HTTP请求都有建立连接的开销,减少请求数是最直接的优化手段: // CSS Sprites合并小...
Docker容器化部署实践
DevOps运维
2026-03-22 23:10
Docker容器化部署实践 Docker通过容器化技术,将应用及其所有依赖打包成一个标准化的可移植单元,彻底解决了"在我电脑上能运行"的环境一致性问题。本文将从Docker基础概念讲起,逐步深入到多容器编排、生产环境部署和性能优化,帮助你全面掌握Docker的实际应用。 一、Docker核心概念 理解Docker需要先掌握三个核心概念: 镜像(Image):只读模板,包含运行应用所需的所...
«
1
2
3
»
文章分类
全部文章
前端开发
后端开发
DevOps运维
数据库技术
工具使用
编程思维
开发心得
基本
文件
流程
错误
SQL
调试
请求信息 : 2026-04-16 05:27:15 HTTP/2.0 GET : www.xpwl.work/index/article?page=2
运行时间 : 0.057297s [ 吞吐率:17.45req/s ] 内存消耗:3,768.57kb 文件加载:79
查询信息 : 7 queries 1 writes
缓存信息 : 1 reads,1 writes
配置加载 : 76
/www/wwwroot/www.xpwl.work/public/index.php ( 0.88 KB )
/www/wwwroot/www.xpwl.work/thinkphp/start.php ( 0.72 KB )
/www/wwwroot/www.xpwl.work/thinkphp/base.php ( 2.60 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Loader.php ( 21.07 KB )
/www/wwwroot/www.xpwl.work/vendor/composer/autoload_static.php ( 10.49 KB )
/www/wwwroot/www.xpwl.work/vendor/symfony/deprecation-contracts/function.php ( 0.98 KB )
/www/wwwroot/www.xpwl.work/vendor/symfony/polyfill-php80/bootstrap.php ( 1.50 KB )
/www/wwwroot/www.xpwl.work/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
/www/wwwroot/www.xpwl.work/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
/www/wwwroot/www.xpwl.work/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
/www/wwwroot/www.xpwl.work/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
/www/wwwroot/www.xpwl.work/vendor/symfony/polyfill-php73/bootstrap.php ( 0.99 KB )
/www/wwwroot/www.xpwl.work/vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php ( 0.10 KB )
/www/wwwroot/www.xpwl.work/vendor/topthink/think-helper/src/helper.php ( 2.88 KB )
/www/wwwroot/www.xpwl.work/vendor/fastadminnet/fastadmin-addons/src/common.php ( 15.67 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Route.php ( 60.23 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Config.php ( 6.38 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Hook.php ( 4.71 KB )
/www/wwwroot/www.xpwl.work/vendor/overtrue/wechat/src/Kernel/Support/Helpers.php ( 2.54 KB )
/www/wwwroot/www.xpwl.work/vendor/overtrue/wechat/src/Kernel/Helpers.php ( 1.89 KB )
/www/wwwroot/www.xpwl.work/vendor/topthink/think-captcha/src/helper.php ( 1.94 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Validate.php ( 42.78 KB )
/www/wwwroot/www.xpwl.work/vendor/topthink/think-queue/src/common.php ( 1.19 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Console.php ( 23.13 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Error.php ( 3.75 KB )
/www/wwwroot/www.xpwl.work/thinkphp/convention.php ( 10.37 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/App.php ( 21.58 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Request.php ( 49.78 KB )
/www/wwwroot/www.xpwl.work/application/config.php ( 12.00 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Env.php ( 1.21 KB )
/www/wwwroot/www.xpwl.work/application/database.php ( 2.17 KB )
/www/wwwroot/www.xpwl.work/application/extra/addons.php ( 0.19 KB )
/www/wwwroot/www.xpwl.work/application/extra/queue.php ( 0.55 KB )
/www/wwwroot/www.xpwl.work/application/extra/site.php ( 0.87 KB )
/www/wwwroot/www.xpwl.work/application/extra/upload.php ( 1.05 KB )
/www/wwwroot/www.xpwl.work/application/tags.php ( 1.23 KB )
/www/wwwroot/www.xpwl.work/application/common.php ( 15.57 KB )
/www/wwwroot/www.xpwl.work/thinkphp/helper.php ( 17.30 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Debug.php ( 7.13 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Log.php ( 6.05 KB )
/www/wwwroot/www.xpwl.work/addons/summernote/Summernote.php ( 1.42 KB )
/www/wwwroot/www.xpwl.work/vendor/fastadminnet/fastadmin-addons/src/Addons.php ( 7.64 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Cache.php ( 6.10 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/cache/driver/File.php ( 7.27 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/cache/Driver.php ( 5.98 KB )
/www/wwwroot/www.xpwl.work/application/common/behavior/Common.php ( 3.02 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Lang.php ( 7.42 KB )
/www/wwwroot/www.xpwl.work/thinkphp/lang/zh-cn.php ( 11.81 KB )
/www/wwwroot/www.xpwl.work/application/index/lang/zh-cn.php ( 10.79 KB )
/www/wwwroot/www.xpwl.work/extend/fast/Form.php ( 39.79 KB )
/www/wwwroot/www.xpwl.work/application/index/controller/Article.php ( 2.71 KB )
/www/wwwroot/www.xpwl.work/application/index/controller/Base.php ( 3.15 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Controller.php ( 6.07 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/traits/controller/Jump.php ( 4.92 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/View.php ( 6.77 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/view/driver/Think.php ( 5.64 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Template.php ( 44.92 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/template/driver/File.php ( 2.24 KB )
/www/wwwroot/www.xpwl.work/application/admin/model/Article.php ( 0.58 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Model.php ( 69.55 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Db.php ( 6.67 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/connector/Mysql.php ( 3.89 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/Connection.php ( 29.97 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/Query.php ( 93.80 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/builder/Mysql.php ( 4.53 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/Builder.php ( 31.81 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/model/relation/BelongsTo.php ( 7.75 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/model/relation/OneToOne.php ( 10.03 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/model/Relation.php ( 3.61 KB )
/www/wwwroot/www.xpwl.work/application/admin/model/Category.php ( 0.14 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/paginator/driver/Bootstrap.php ( 5.23 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Paginator.php ( 9.94 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/db/Expression.php ( 1.11 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Collection.php ( 11.10 KB )
/www/wwwroot/www.xpwl.work/application/admin/model/ToolUsageStats.php ( 0.37 KB )
/www/wwwroot/www.xpwl.work/runtime/temp/f129fe533e1b896832fbaa77dcac8f47.php ( 10.64 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Url.php ( 12.72 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/Response.php ( 8.28 KB )
/www/wwwroot/www.xpwl.work/thinkphp/library/think/debug/Html.php ( 4.17 KB )
[ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000134s ]
[ CACHE ] INIT File
[ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001897s ]
[ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000752s ]
[ LANG ] /www/wwwroot/www.xpwl.work/thinkphp/lang/zh-cn.php
[ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
[ ROUTE ] array ( 'type' => 'module', 'module' => array ( 0 => 'index', 1 => 'article', 2 => NULL, ), )
[ HEADER ] array ( 'accept-encoding' => 'gzip, br, zstd, deflate', 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'accept' => '*/*', 'host' => 'www.xpwl.work', 'content-length' => '', 'content-type' => '', )
[ PARAM ] array ( 'page' => '2', )
[ LANG ] /www/wwwroot/www.xpwl.work/public/../application/index/lang/zh-cn.php
[ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001936s ]
[ RUN ] app\index\controller\Article->index[ /www/wwwroot/www.xpwl.work/application/index/controller/Article.php ]
[ DB ] INIT mysql
[ VIEW ] /www/wwwroot/www.xpwl.work/public/../application/index/view/article/index.html [ array ( 0 => 'site', 1 => 'canonical_url', 2 => 'seo', 3 => 'list', 4 => 'categories', 5 => 'currentCategoryId', ) ]
0.058045s