XDEBUG调试配置
总得前行
- 关注
XDEBUG调试配置
XDEBUG调试配置
环境:windows10 、phpstudy8.1、vscode
调试为本地调试
- 在phpstudy中php扩展里勾选xdebug扩展
- 将phpstudy里php.ini中xdebug部分修改为:
[Xdebug]
zend_extension=C:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=Off
xdebug.trace_output_dir=C:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace
xdebug.profiler_enable=Off
xdebug.profiler_output_dir=C:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.profiler
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.remote_host=localhost
xdebug.remote_port=9003
xdebug.remote_handler=dbgp
- vscode安装PHP Debug插件,并在扩展设置setting.json文件中全覆盖为(php.debug.executablePath值为phpstudy的php路径):
{
"workbench.colorTheme": "Default High Contrast Light",
"php.debug.executablePath": "C:\\phpstudy_pro\\Extensions\\php\\php7.3.4nts\\php.exe"
}
- vscode打开phpstudy目录下的项目文件(注意是phpstudy的www目录下代码文件),会提示创建launch.json文件,修改端口为xdebug相同的端口就行(此处默认即可)。此处一般仅需修改端口信息
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 0,
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"env": {
"XDEBUG_MODE": "debug,develop",
"XDEBUG_CONFIG": "client_port=${port}"
}
},
{
"name": "Launch Built-in web server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-dxdebug.mode=debug",
"-dxdebug.start_with_request=yes",
"-S",
"localhost:0"
],
"program": "",
"cwd": "${workspaceRoot}",
"port": 9003,
"serverReadyAction": {
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}
- 到这步已经配置好可以使用了。使用先点击“运行和调试”的开始键
- 浏览器访问对应的功能触发断点,即可看到已经有堆栈信息。 此处浏览应无需浏览器的php debug插件,实测bp的repeater里也可触发断点
免责声明
1.一般免责声明:本文所提供的技术信息仅供参考,不构成任何专业建议。读者应根据自身情况谨慎使用且应遵守《中华人民共和国网络安全法》,作者及发布平台不对因使用本文信息而导致的任何直接或间接责任或损失负责。
2. 适用性声明:文中技术内容可能不适用于所有情况或系统,在实际应用前请充分测试和评估。若因使用不当造成的任何问题,相关方不承担责任。
3. 更新声明:技术发展迅速,文章内容可能存在滞后性。读者需自行判断信息的时效性,因依据过时内容产生的后果,作者及发布平台不承担责任。
本文为 总得前行 独立观点,未经授权禁止转载。
如需授权、对文章有疑问或需删除稿件,请联系 FreeBuf 客服小蜜蜂(微信:freebee1024)
如需授权、对文章有疑问或需删除稿件,请联系 FreeBuf 客服小蜜蜂(微信:freebee1024)
被以下专辑收录,发现更多精彩内容
+ 收入我的专辑
+ 加入我的收藏
路由器固件模拟环境搭建
2022-09-19
Scrapy爬虫问题的调试小则
2022-08-24
【log4j2-scan】使用浏览器爬虫获取网站全链接扫描log4j2漏洞工具
2022-03-23