1.安装xdebug 扩展,phpinfo() 查看
2.配置php.ini
zend_extension=D:/phpstudy_pro/Extensions/php/php7.4.3nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=On
xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.4.3nts.xdebug.trace
xdebug.profiler_enable=On
xdebug.profiler_output_dir="D:\phpstudy_pro\Extensions\tmp\xdebug"
xdebug.remote_enable=On
xdebug.idekey=PHPSTORM
xdebug.remote_autostart=On
xdebug.remote_host=localhost
xdebug.remote_port=9003
xdebug.remote_handler=dbgp
注意xdebug.idekey和xdebug.remote_port 要和稍后的IDEA一致。
3.配置php可执行路径
4.配置代理
5.配置主机、域名
6.点击apply后,重启IDEA。
7.打开
8.在显示代码行数上打断点
9.在浏览器上请求到打断点的方法,即可触发debug