windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

书史足自悦,安用勤与劬。这篇文章主要讲述windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口相关的知识,希望能为你提供帮助。




文章目录


  • ??环境??
  • ??下载xdebug插件并配置??

  • ??检测匹配当前使用PHP版本的xdebug??
  • ??下载官方推荐的xdebug版本??
  • ??php.ini配置xdebug参数??
  • ??确认xdebug插件正确安装??

  • ??phpstorm配置??

  • ??配置PHP??
  • ??配置debug??
  • ??配置dbgp??
  • ??配置servers??
  • ??配置调试功能??

  • ??postman访问接口配置??



安装之前要说的话:博主被这个xdebug插件折磨了一周,几乎所有文章的方法都试了,但就是调试不出结果,最后更新了phpstorm版本才得以解决(原来是2018.2,升级到了2019.3.3),所以,如果有遇到这种情况的,可以考虑升级一下phpstorm!!!
环境windows 10
nginx1.15.11
mysql5.7.26
php7.3.4
phpstorm2019.3.4
下载xdebug插件并配置 检测匹配当前使用PHP版本的xdebug
  • 访问phpinfo的信息,页面右键查看源代码,并完全复制源码,打开??xdebug检测网站???,粘贴到框中,并点击下方按钮执行检测:
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
下载官方推荐的xdebug版本

  • 检测结果,点击下载推荐的xdebug插件,放入到当前PHP运行对应版本的ext目录下
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片

    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片

    注意:以上信息都是根据你复制的phhpinfo信息判定的,跟随以上图中四处说明即可,如果php.ini已存在extension=php_xdebug-2.9.3-7.3-vc15-nts-x86_64则需要注释掉,按照上图推荐的写法。
  • 重启web服务器。

php.ini配置xdebug参数
  • 在上图第四步添加xdebug扩展后继续添加如下参数:
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9001
xdebug.idekey="PHPSTORM"

  • 重启web服务器
确认xdebug插件正确安装
  • 查看phpinfo可看到xdebug扩展enable即说明正确安装并启用
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
phpstorm配置 配置PHP
  • File => Settings => Languages & Frameworks => PHP
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片

    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
配置debug
  • File => Settings => Languages & Frameworks => PHP => Debug
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
配置dbgp
  • File => Settings => Languages & Frameworks => PHP => Debug => DBGp Proxy
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
配置servers
  • File => Settings => Languages & Frameworks => PHP => Servers
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
配置调试功能


Run => Edit Configurations
windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

文章图片

windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

文章图片

如果这里设置php web page不行,可以设置php remote(PHP远程调试)
windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

文章图片



开启监听
未开启时:
windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

文章图片

开启后:
windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

文章图片



postman访问接口配置

  • 要访问的接口需要调试的地方打断点:
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
  • 在请求头header加入如下内容:
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片
  • 断点打好且postman接口及参数写好后,点击send开始请求,phpstorm自动出现调试结果窗口:
    windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口

    文章图片

    这里要说明的是,很多文章说要点击下图的run xxx 或 debug xxx,其实完全没有必要的,已经设置了idekey的参数为PHPSTORM,在访问接口或页面的时候只需要设置XDEBUG_SESSION=PHPSTORM(页面)或Cookie:XDEBUG_SESSION=PHPSTORM即可,由于博主主要做接口开发,所以这里只做了接口配置断点调试。

如有问题,欢迎留言。
********************只要思想不滑坡,办法总比困难多********************


【windows下WNMP(win/nginx/mysql/PHP)环境phpstorm安装使用xdebug调试插件并配置通过postman调试接口】


    推荐阅读