纯PHP搭建Apache+Eclipse+xDebug+PHPUnit+MakeGood

首先这篇文章来之不易啊,是我花了一天的时间调查的结果,希望大家支持哦

1.PHP下载:(现在版本为5.4.4)
http://www.php.net/downloads.php
2.Apache HTTP 下载:
http://httpd.apache.org/ 
3.下载PHPEclipse
这个网上有很多,我这里就不多说了,其实开发工具用什么都行。
4.下载xdebug
http://xdebug.org/download.php

下面开始我们一步一步的搭建
1.Apache安装和Eclipse安装,网上有很多我也写了一个
  http://chenhailong.iteye.com/admin/blogs/1055488
其中包含了,怎么配置PHP和怎么将PHP配置到Apache上还有就是怎么建立虚拟目录,很全的文章,就是看着不怎么方便罢了
2.在PHP上配置xdebug
首先在.ini上配置如下内容:
[XDebug]
zend_extension ="C:\Program Files\Apache Software Foundation\php\ext\php_xdebug-2.2.0-5.4-vc9.dll"
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=0
xdebug.remote_mode=req
xdebug.remote_autostart=0
重点在于zend_extendsion指定为我们下载的xdebug的dll
这样我们就配置成功了
3.配置PHPUnit
首先安装pear,如果有的话,略过这段,具体的如下:
       3.1 去网上下载:go-pear.phar
       3.2 在用php go-pear.phar,就可以自动安装成功了
然后安装PHPUnit
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit

测试:

phpunit --help
        如果找不到的话,说明你的phpunit没有装成功,或者少东西。
        在使用如下命令:
pear upgrade-all
pear install --alldeps --force phpunit/PHPUnit
4.配置MakeGood

MakeGood是一个插件:
http://marketplace.eclipse.org/content/makegood-1

安装地址
http://eclipse.piece-framework.com

好了支撑选择就行了

5.实践出真知
老毛头教育我们,实践才能看到事物的本质,希望大家能事件出来

下面我提供几个URL,希望能对大家有帮助

PHPUnit 文档

http://www.phpunit.de/manual/3.4/en/code-coverage-analysis.html

MakeGood 向导

http://piece-framework.com/projects/makegood/wiki/MakeGood_User_Guide_1_7_0


我做了一个小例子,放到下面,希望也给大帮助

 

 

你可能感兴趣的:(apache,eclipse,PHP,xdebug,MakeGood)