美文网首页
phpStorm+XDebug进行断点调试

phpStorm+XDebug进行断点调试

作者: ONEDAYLOG | 来源:发表于2020-05-12 08:39 被阅读0次

1.安装好PHP,我是使用xampp的所有一键集成

2.修改php.ini最下面:

zend_extension = "D:\xampp\php\ext\php_xdebug.dll"(根据实际情况确定)
xdebug.remote_enable =1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_mode = "req"
xdebug.remote_port = 9000

其中remote_host 是指调试客户端的地址,即IDE所在的IP,同理remote_port 是客户端的端口,这两项在远程调试的情况下注意修改

3. 配置phpstorm,进入File>Settings>PHP>Servers,这里要填写服务器端的相关信息,name填localhost,host填localhost,port填80,debugger选XDebug

blob.png
  1. 进入File>Settings>PHP>Debug,看到XDebug选项卡,port填9000,其他默认
blob.png
  1. 进入File>Settings>PHP>Debug>DBGp Proxy,IDE key 填 phpStorm,host 填localhost,port 填80
blob.png

6. 打开浏览器,如果是用chrome或者Firefox可以找到对应的XDebug工具,工具的设置里的IDE KEY填上phpStorm,把localhost加入到白名单,以后调试的时候把工具启用就好了。如果是用其他浏览器,可以访问http://www.jetbrains.com/phpstorm/marklets/,在右边填上phpStorm,点generate,把下面的链接添加到收藏夹,方便调用。

7. 在phpStorm里打开监听,就是一个电话一样的按钮。Run->Start

![blob.png](https://img.haomeiwen.com/i4445477/41d6bbd3d41455e7.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240 "1461119809893149.png")

8 .在浏览器里打开XDebug工具,访问localhost,与phpStorm连接成功!

blob.png

相关文章

网友评论

      本文标题:phpStorm+XDebug进行断点调试

      本文链接:https://www.haomeiwen.com/subject/bjevnhtx.html