码迷,mamicode.com
首页 > Web开发 > 详细

Phpstorm-Xdebug配置

时间:2017-09-02 01:10:55      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:ide   开发环境   2-2   变量   put   技术分享   down   分享   div   

用的是phpstudy集成开发环境

1 xdebug关于Php.ini配置最后写上

 

php5的

 

[XDebug]

xdebug.profiler_append = 0

xdebug.profiler_enable = 1

xdebug.profiler_enable_trigger = 0

xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"

xdebug.profiler_output_name = "cachegrind.out.%t-%s"

xdebug.remote_enable = 1

xdebug.remote_handler = dbgp

xdebug.remote_host= localhost

xdebug.remote_port = 9000

xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"

zend_extension="D:\phpStudy\php\php-5.5.38\ext\php_xdebug.dll"

xdebug.idekey= PHPSTROM

 

 

 ===============

 

php7

[XDebug]

xdebug.profiler_append = 0

xdebug.profiler_enable = 1

xdebug.profiler_enable_trigger = 0

xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"

xdebug.profiler_output_name = "cachegrind.out.%t-%s"

xdebug.remote_enable = 1

xdebug.remote_handler = dbgp

xdebug.remote_host= localhost

xdebug.remote_port = 9000

xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"

zend_extension="D:\phpStudy\php\php-7.0.12-nts\ext\php_xdebug.dll"

xdebug.idekey= PHPSTROM

 

 记得开启扩展

技术分享

 

2 xdebug的配置和php.ini一致

技术分享

3    xdebug的DBGp配置默认的这些

技术分享

3.    xdebug的配置服务2钟方式

一种是在右上角按  配置

技术分享

技术分享

技术分享

一种是直接在配置里面设置

 技术分享

 

配置chrom的debug(参考)

http://download.csdn.net/detail/erisern2/9470496

4    xdebug最后

选好右上角的配置,然后设置断点,断点记得一定要选好位置,不要选在空白处,不然无法启动,选在类,函数开头,或者变量位置!!!!!!!!!!!!!!!!!!!启动小蜘蛛就可以了

多个配置则添加多个PHP web Application即可,配置完毕!!

 

Phpstorm-Xdebug配置

标签:ide   开发环境   2-2   变量   put   技术分享   down   分享   div   

原文地址:http://www.cnblogs.com/wujunbin/p/7465413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!