VScode 安装PHPdebug新版Xdebug3.0

网友投稿 663 2022-11-04

VScode 安装PHPdebug新版Xdebug3.0

VScode 安装PHPdebug新版Xdebug3.0

安装​​vscode​​​插件 ​​PHP Debug​​(ctrl+shift+x)

进入Xdebug ​​官网​​

安装哪个版本

可以本地浏览器​​2和3.* 不太一样,配置文件需要更新

; XDEBUG Extension 3.0 zend_extension = xdebug xdebug.mode=debug xdebug.start_with_request=yes xdebug.client_host=127.0.0.1 xdebug.port=9003

VScode 配置

setting.json l里面添加debug路径

"php.debug.executablePath": "c:\\wamp\\bin\\php\\php7.3.21\\php.exe",

{ "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": 9003 } ]}

重启wamp即可;

你要保守你心,胜过保守一切。

作者:​​刘俊涛的博客​​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:JSFuck
下一篇:GC算法实现垃圾优先算法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~