phpstrom配置xdebug(新)

1.首先配置一下xdebug的设置,因为我这里用的是wamp, 所以我的php.ini 位置在 F:\wamp\bin\apache\apache2.2.22\bin

下的php.ini


[xdebug]
;显示默认的错误信息  
xdebug.remote_enable = on
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "f:/wamp/tmp"
xdebug.remote_handler=dbgp
;设置xdebug的端口为9001
xdebug.remote_port = 9001
;设置idekey
xdebug.idekey="PHPSTORM"

2.开始配置

phpstrom配置xdebug(新)_第1张图片

phpstrom配置xdebug(新)_第2张图片

phpstrom配置xdebug(新)_第3张图片

phpstrom配置xdebug(新)_第4张图片

phpstrom配置xdebug(新)_第5张图片

phpstrom配置xdebug(新)_第6张图片

phpstrom配置xdebug(新)_第7张图片

phpstrom配置xdebug(新)_第8张图片

phpstrom配置xdebug(新)_第9张图片phpstrom配置xdebug(新)_第10张图片phpstrom配置xdebug(新)_第11张图片

如果你不想使用浏览器,想直接测试php程序的话可以用下面的这个测试

phpstrom配置xdebug(新)_第12张图片

你可能感兴趣的:(phpstorm)