phpstorm支持xdebug断点调试

1、安装与PHP版本相符的xdebug扩展,本文下载的是php7.3版本的

链接:http://xdebug.org/download

phpstorm支持xdebug断点调试_第1张图片
2、将xdebug.dll文件复制到php安装目录下

D:\phpstudy_pro\Extensions\php\php7.3.4nts\ext\php_xdebug-2.9.6-7.3-vc15-nts-x86_64.dll

3、phpstorm配置xdebug支持

phpstorm支持xdebug断点调试_第2张图片

4、设置远程端口

phpstorm支持xdebug断点调试_第3张图片

5、设置DBGP Proxy

phpstorm支持xdebug断点调试_第4张图片

6、配置php.ini

[xdebug]
zend_extension ="D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug-2.9.6-7.3-vc15-nts-x86_64.dll" 
xdebug.remote_enable = On
xdebug.idekey=PHPSTORM
xdebug.remote_enable = On
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp

7、谷歌浏览器安装需要安装Xdebug helper,用户可以在chrome浏览器中的应用商店上添加Xdebug helper扩展

安装完成后点击debug图标,右键选择选项

phpstorm支持xdebug断点调试_第5张图片

点击debug图标,选择debug,并在phpstorm中设置断点,即可完成

phpstorm支持xdebug断点调试_第6张图片

你可能感兴趣的:(phpstorm,xdebug)