码迷,mamicode.com
首页 > 其他好文 > 详细

zend用xdebug调试

时间:2017-02-06 17:10:29      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:返回值   param   file   deb   修改   blank   ret   amp   自动启动   

我的php版本是5.3.3

下载相应的xdebug扩展放到php/ext/下

2.1.1
 
修改php.ini文件
[Xdebug]
;开启自动跟踪
xdebug.auto_trace = On
 
;开启异常跟踪
xdebug.show_exception_trace = On
 
;收集变量
xdebug.collect_vars = On
 
;收集返回值
xdebug.collect_return = On
 
;收集参数
xdebug.collect_params = On
zend_extension=D:\wamp\bin\php\php5.3.3\ext\php_xdebug.dll
xdebug.profiler_enable=on
xdebug.trace_output_dir="/workspace/xdebuginfo/xdebug"
xdebug.profiler_output_dir="/workspace/xdebuginfo/xdebug"
 
;开启远程调试自动启动
xdebug.remote_autostart = On
 
;开启远程调试 Xdebug允许远程IDE连接
xdebug.remote_enable = On
 
xdebug.remote_host=192.168.1.200
xdebug.remote_port=9000
xdebug.remote_handler=dbgp

zend用xdebug调试

标签:返回值   param   file   deb   修改   blank   ret   amp   自动启动   

原文地址:http://www.cnblogs.com/hunchun/p/6370882.html

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