一、PHPStudy自带xdebug扩展,只需要打开即可
开启xdebug扩展
二、php.ini配置(配置完成使用php.exe -m可查看xdebug是否启动)
``
[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir ="D:\phpStudy\tmp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
zend_extension="D:\phpStudy\php54n\ext\xdebug.dll"
xdebug.remote_port = 9000
xdebug.remote_mode = "req"
xdebug.idekey = PHPSTORM
三、下载并安装浏览器xdebug工具:如chrome的扩展
http://www.chromein.com/public/crx/eadndfjplgieldjbigjakmdgkmoaaaoc/chromein.com_ext_11294.crx
插件设置
四、phpStorm设置;
(1).File>Settings>Languages&Framework>PHP>Servers:name填localhost,host填localhost(或127.0.0.1),port填80,debugger选XDebug
(2).File>Settings>Languages&Framework>PHP>Debug>XDebug:port填9000
(3).File>Settings>Languages&Framework>PHP>Debug>DBGp Proxy:IDE key 填 PHPSTORM,host 填localhost(或127.0.0.1),port 填80
(4).File>Settings>Languages&Framework>PHP>选着自己的PHP路径
五、在phpStorm里打开监听,就是一个电话一样的按钮
六,访问localhost,打开xdebug插件(chrome效果如下)
网友评论