Windows phpstorm xdebug使用

1.下载对应版本的xdebug:https://xdebug.org/download.php
Windows phpstorm xdebug使用_第1张图片
2.配置:
1)将下载好的.dll文件放入指定的位置(php下的ext)
2)php.ini

[xdebug]
zend_extension ="D:/Family-Tree-Medical/server/php-7.1.24/ext/php_xdebug-2.7.0alpha1-7.1-vc14-x86_64.dll"

xdebug.remote_enable = On
;启用性能检测分析
xdebug.profiler_enable = On
;启用代码自动跟踪
xdebug.auto_trace=On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
;指定性能分析文件的存放目录
xdebug.profiler_output_dir ="D:/Family-Tree-Medical/server/debug"
xdebug.show_local_vars=0

;配置端口和监听的域名
xdebug.remote_port=9000
xdebug.remote_host="localhost"

3.配置phpstorm
file->settings->languages&frameworks->php配置
Windows phpstorm xdebug使用_第2张图片
Windows phpstorm xdebug使用_第3张图片
php下debug配置
Windows phpstorm xdebug使用_第4张图片
debug下DBGp Proxy配置
Windows phpstorm xdebug使用_第5张图片
server配置
Windows phpstorm xdebug使用_第6张图片
配置configurations
Windows phpstorm xdebug使用_第7张图片
Windows phpstorm xdebug使用_第8张图片
Windows phpstorm xdebug使用_第9张图片
配置完成,可以使用

你可能感兴趣的:(debug)