php调试环境搭建

之前一周纠结了好长时间的php开发环境的问题,但是就心想:这eclipse风格的IDE简直跟VisualStudio没法比啊。。


进入正题:

素材准备: ZendStudio10 的安装:

http://www.fnye.net/archives/136


xampp的安装:官网的最新版本附带的php版本是5.4.16

网上各种介绍 zenddebuger和xDebug的都是基于php的较早版本,因此各种配置失败。


然后据说zenddebuger 在php5以后就不怎么支持了。。。

然后更无语的是,xDebug竟然在官网的向导页面把phpinfo的信息粘贴进去后,提示的下载神马也木有。。这是什么情况。


然后经历了各种各样的摧残。最终在stack overflow上找到了答案:

http://stackoverflow.com/questions/17466062/cant-install-xdebug-on-xampp-and-windows-xp


意思是xDebug的版本跟php的版本不一致,才导致phpinfo()里没有关于xdebug的信息。


绕了一圈原来问题出在这!

按照大侠的指点,进行了配置:下载dll,复制到php的ext目录,修改php.ini(stack overflow写的配置有个错误,参考下面正确的)

然后,各自修改,终于成功了!


PS:配置文件参数:

[XDebug] 
zend_extension = "E:\xampp\php\ext\php_xdebug-2.2.3-5.4-vc9.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "E:\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 = "E:\xampp\tmp"

PS: php学习相关的网站:

1.80端口被占用的解决:

http://wpbaike.net/bbs/thread-148-1-1.html

2.ZendStudio 安装Aptana插件

http://waynerqiu.com/4/140.html

3.ZendStudio的常用配置(字体设置,代码提示,快捷键重设)

http://hi.baidu.com/andywang1221/item/1fbaa9cb47aad417515058e0

4.php网站起始页的设置

http://www.kuqin.com/web/20090725/64274.html

5.JSON的序列化和反序列化

http://www.chinaz.com/program/2010/0129/105401.shtml

6.eclipse的主题插件(给力)

http://eclipsecolorthemes.org/?view=plugin

http://www.codecho.com/eclipse-color-theme/

7.鸟叔的php调试配置手册(版本比较老但是思想很有参考价值,同事推荐。)

http://www.laruence.com/2010/06/21/1608.html



你可能感兴趣的:(php调试环境搭建)