热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

vscode+php+xdebugwon'tstopatbreakpoint断点不起作用

notstoppingonbreakpointsbreakpointnotworking原因:1)php.inixdebug端口不配置的情况下,默认是9000,如果vscode里面

not stopping on breakpoints

breakpoint not working

原因:

1) php.ini xdebug 端口不配置的情况下,默认是 9000,如果vscode里面改为了其他端口,php.ini里面也要改为同样的端口。

如:

  a) vscode launch.json

"configurations": [
{
"name": "listen for xdebug",
"type": "php",
"request": "launch",
"port": 9179,
"stoponentry":true,
"log": true
},
{
"name": "launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${filedirname}",
"port": 9179,
"stoponentry": false,
"log":true
}

 php.ini 需要这么设置

[xdebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="d:\btsoft\websoft\temp\xdebug\"
xdebug.trace_output_dir ="d:\btsoft\websoft\temp\xdebug\"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_autostart = 1
xdebug.remote_autorestart=1
xdebug.remote_connect_back=1
xdebug.remote_port=9179
xdebug.remote_log = "d:\btsoft\websoft\temp\xdebug\debug.log"
zend_extension=php_xdebug.dll

 

否则断点不起作用



推荐阅读
author-avatar
帅宁
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有