phpstorm xdebug 断点调试配置记录
- Xdebug安装地址 https://xdebug.org/wizard , ,进入下载页面后点击custom installation instructions,可以找到适合的Xdebug版本。
- 复制本地运行的 phpinfo() 信息进去,下载对应的xdebug版本。
- 下载的dll放在对应php版本的ext目录里面, 例如
php\php7.4.3nts\ext
- 配置对应的php版本的php.ini 的xdebug配置。示例如下:
[Xdebug]
xdebug.profiler_append = 0
xdebug.profiler_enable=On
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:\phpstudy_pro\Extensions\tmp\xdebug"
xdebug.trace_output_dir="D:\phpstudy_pro\Extensions\tmp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable=On
xdebug.remote_handler="dbgp"
xdebug.remote_host="127.0.0.1"
xdebug.remote_autostart=1
zend_extension="D:/phpstudy_pro/Extensions/php/php7.4.3nts/ext/php_xdebug.dll"
xdebug.idekey=PHPSTORM
xdebug.auto_trace=On
xdebug.remote_port=9099
xdebug.collect_vars=1
xdebug.collect_return=1
xdebug.collect_params=1
xdebugbug.max_nesting_level = 10000
你的坚持 ------ 终将美好 ~
分类:
PHPstorm 编辑器
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
· 提示词工程——AI应用必不可少的技术
2018-11-24 按拼音首字母排序