Eclipse PDT+WAMP+xdebug

一直用着eclipse和 wamp+notepad,现在决定整合下,统一下开发环境

环境:操作系统 window8

1.先期准备: Eclipse(不习惯英文,可以下载个中文语言包)      PDT(eclipse的php插件)   WAMP  Xdebug

2.安装方法

elcipse插件安装方法: Help -> Install New Software

中文语言包根据以下的URL进行安装:

Eclipse Juno版本 http://download.eclipse.org/technology/babel/update-site/R0.10.1/juno

Eclipse indigo版本 http://download.eclipse.org/technology/babel/update-site/R0.10.1/indigo

PDT插件根据以下的URL进行安装

Eclipse Juno版本  http://download.eclipse.org/tools/pdt/updates/nightly

Eclipse Kepler版本 http://download.eclipse.org/tools/pdt/updates/3.2-nightly

xdebug http://xdebug.org/download.php 下载dll放入 ext

php.ini设置

xdebug.remote_enable = 1
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = Off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"


zend_extension="D:\wamp\bin\php\php5.4.3\ext\php_xdebug.dll"
xdebug.default_enable = On     
xdebug.collect_params = 4     
xdebug.remote_host = localhost     
xdebug.remote_port = 9000     
xdebug.remote_handler = dbgp  


xdebug.auto_trace = 0  
xdebug.collect_includes = 1  
xdebug.collect_params = 0  
xdebug.collect_return = 0  
xdebug.collect_vars = "Off" 
xdebug.dump_globals = 1  
xdebug.dump_undefined = 0  
xdebug.extended_info = 1  
xdebug.profiler_append = 0 
xdebug.remote_autostart = 0 

按照安装步骤一步一步进行

安装好了.

3.软件配置

设置工作空间: 为WAMP的WWW目录

elicpse启动慢,解决方法:

目下下

-Xms128M
-Xmx768M
-XX:PermSize=512M
-XX:MaxPermSize=512M

xdebug配置

window----preferences---php--php executables  add

php的执行目录,以及php调试器设置xdebug

Debug ---同样设置为xdebug

新建个php项目和文件 

输出结果:Eclipse PDT+WAMP+xdebug_第1张图片







你可能感兴趣的:(eclipse,wamp,xdebug,PDT)