本文目录一览:
eclipse php 怎么用
1.下载eclipse 建议下载 Eclipse Standard (标准版)
2.在eclipse中下载 PDT(php development tools)
help-Install New Software...
work with:选择 --All Available Sites-- (网速慢的同学稍等一下,刷出列表以后,在下拉框中输入php)
安装完成后回自动重启eclipse;
怎样在eclipse下运行php程序
笔者刚刚接触PHP-Eclipse,今天刚把debug PHP的方法弄好,发出来与大家共享一下。
第一步:到Eclipse的官网去下载PHP-Eclipse:
第二步:下载Xdebug
第三步:在PHP5里面找到php.ini,在这个文件的最后面加入如下配置信息:
[xhtml] view plaincopyprint?
[Xdebug]
zend_extension_ts="C:/Program Files/phpStudy/PHP5/ext/php_xdebug.dll"
xdebug.auto_trace = On
xdebug.show_exception_trace = On
xdebug.remote_autostart = On
xdebug.remote_enable = On
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.profiler_enable = on
xdebug.profiler_output_dir="C:/Program Files/phpStudy/PHP5/log
这里要特别注意:如果在文件里有其他的zend_extension_ts,需要注释掉,否则apache无法启动。
第四步:启动apache。
第五步:在eclipse的项目里的Properties里面找到"PHP Debug",在PHP Debugger里面选择"XDebug"
再配置一下:
第六步:再在Windows-Preferences里面配置下PHP Servers
接下来,进入debug界面,就可以开始设置断点进行debug了。
用Eclipse来开发PHP需要怎样配置
eclipse开发php全过程的搭建带debug的配置
1:先安装好java运行环境这个eclipse运行靠的就是这个,自己来安装吧。
2:安装好php的运行环境,我是apache+php自己配置的,php的版本是5.3.apache的版本是2.2。把apache的主目录设置在了D:\phproot。php的主目录在
D:\php-5.3.8-Win32-VC9-x86。下面才是要说的重点:
1:下载eclipse pdt all in one;
2:下载xdebug;
3:把下载后的dll放在的地方是:
D:\php-5.3.8-Win32-VC9-x86\ext\php_xdebug-2.2.1-5.3-vc9.dll;
4:在php.ini下添加下列语句:
[html] view plaincopyprint?
[Xdebug]
zend_extension=D:\php-5.3.8-Win32-VC9-x86\ext\php_xdebug-2.2.1-5.3-vc9.dll
xdebug.profiler_enable=on
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.show_exception_trace = On
xdebug.remote_autostart = On
xdebug.remote_enable = On
xdebug.collect_vars = On
5:重启apache,随便建立一个php文件,来输出一下phpinfo();如果看到下面截图则说明安装成功了。