zendstudio 修改了xdebug.remote_port这个设置,默认是9000,但fast-cgi的默认端口也是9000,端口被占用,修改为9001。配置如下:
[XDebug]
xdebug.profiler_output_dir=”C:\phpStudy\PHPTutorial\tmp\xdebug”
xdebug.trace_output_dir=”C:\phpStudy\PHPTutorial\tmp\xdebug”
zend_extension=”C:\phpStudy\PHPTutorial\php\php-5.6.27-nts\ext\php_xdebug.dll”
xdebug.profiler_append = 0
;是否开启调试内容
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
;开启远程调试自动启动
xdebug.remote_autostart = 0
;开启自动跟踪
xdebug.auto_trace = 1
;是否开启远程调试
xdebug.remote_enable = 1
xdebug.remote_handler = “dbgp”
xdebug.remote_host = “127.0.0.1”
;远程调试的端口
xdebug.remote_port = 9001
;开启异常跟踪xdebug.show_exception_trace = 1
;是否收集变量
xdebug.collect_vars = 1
;是否收集返回值
xdebug.collect_return = 1
;是否收集参数
xdebug.collect_params = 1
;显示局部变量
xdebug.show_local_vars = 1
;显示默认的错误信息
xdebug.default_enable = 1
xdebug.profiler_enable_trigger = 0
在php.ini配置了如上的配置,但是用zendstudio配置的时候,打开超慢。
附录:
http://www.php.cn/php-weizijiaocheng-388793.html