从eclipse到vim,一开始没有找到单步断点调试的功能,很不爽,然后搜索了下,找到了xdebug+vdebug的解决方案。
安装xdebug
环境:centos 6.5
xdebug的安装:
http://www.cnblogs.com/yixiong/archive/2013/03/29/2988331.html
vim上使用xdebug进行调试
- 安装xdebug
- 使用pathgen安装vim的vdebug插件。
- 在php.ini中进行vdebug的配置。配置如下:
zend_extension=/path/to/xdebug.so
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
- 注意事项: