分类: PHP
2013-10-25 17:01:43
2,,直接下载下面的那个3.0.x版本的All in one windows安装包。直接运行eclipse就可以启动。
3,这个集成的PHP+MySql运行环境。
4,在c:\xampp\php\php.ini文件里面去掉XDebug的注释,并把所有0改为1
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_append = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.trace_output_dir = "C:\xampp\tmp"
5,Eclipse的配置。
依次打开Windows -> Preferences -> PHP ->PHP Executables 加入XDebug
依次打开Windows -> Preferences -> PHP ->Debug,配置如下
然后在debug configuration 里面配置如下:
下面调试成功后的界面如下所示:
如果以上不能解决问题,有可能是网上说的端口被占用的原因,网上给出的解决方案是:
1)修改php.ini
xdebug.remote_port=9001 ;反向连接zend studio使用的端口
2) 修改zend studio 的XDebug反向链接端口
Window -> Preferences -> PHP -> Debug -> Installed Debuggers