phpstudy2018+phpstorm配置xdebug动态调试

这里我php版本使用的是5.6.27

PHP扩展及设置->PHP扩展->Xdebug打勾

phpstudy2018+phpstorm配置xdebug动态调试

 

 

然后修改php.ini

phpstudy2018+phpstorm配置xdebug动态调试

 

 

 

 

xdebug.profiler_output_dir="E:\phpstudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="E:\phpstudy\PHPTutorial\tmp\xdebug"
zend_extension="D:\phpStudy1\PHPTutorial\php\php-5.6.27-nts\ext\php_xdebug.dll"  ;这里写你自己的路径
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_port=9000
xdebug.idekey="PHPSTORM"

然后phpstorm配置

IDE key填php.ini里面设置的

phpstudy2018+phpstorm配置xdebug动态调试

 

添加个服务器

phpstudy2018+phpstorm配置xdebug动态调试

 

 

 

 然后浏览器安装Xdebug helper,进去设置

phpstudy2018+phpstorm配置xdebug动态调试

 

 

在phpstorm里面下断点,并开启监听

phpstudy2018+phpstorm配置xdebug动态调试

 

 

浏览器访问一下,断点便断下来了

 

phpstudy2018+phpstorm配置xdebug动态调试

 

phpstudy2018+phpstorm配置xdebug动态调试

上一篇:【PHP】让新人快速理解ThinkPHP6中的事务操作


下一篇:Asp.Net.Core 5 配置文件读取