Eclipse for php + Xdebug搭建PHP的调试环境

Posted hnhycnlc888

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse for php + Xdebug搭建PHP的调试环境相关的知识,希望对你有一定的参考价值。

第一步:到Eclipse的官网去下载php-Eclipse:http://www.eclipse.org/downloads/packages/eclipse-php-developers/heliossr1

第二步:下载Xdebug (下载地址位于:http://xdebug.org/download.php,我的PHP版本为 PHP 5.3.28 Thread Safety, Apach为2.2.25,使用的端口号8080),我下载的Xdebug版本为php_xdebug-2.2.3-5.3-vc9.dll,并且放入到"PHP/ext目录中。

 

    第三步:在PHP5里面找到php.ini,在这个文件的最后面加入如下配置信息:

zend_extension = D:phpextphp_xdebug-2.2.3-5.3-vc9.dll

;zend_extension_ts = D:phpextphp_xdebug-2.2.3-5.3-vc9.dll

;extension = php_xdebug-2.2.3-5.3-vc9.dll

[Xdebug]

xdebug.auto_trace = On

xdebug.show_exception_trace = On

xdebug.remote_autostart = On

xdebug.remote_enable = On

xdebug.collect_vars = On

xdebug.collect_return = On

xdebug.collect_params = On

xdebug.trace_output_dir=”D:/xDebugLog”

xdebug.profiler_output_dir=”D:/xDebugLog”

xdebug.profiler_enable=On

xdebug.remote_host=localhost

xdebug.remote_port=9000

xdebug.remote_handler=dbgp

 

    这里要特别注意:如果在文件里有其他的zend_extension_ts,需要注释掉,否则apache无法启动。

 

    第四步:启动apache。

 

    第五步:在eclipse的项目里的Properties里面找到"PHP Debug",在PHP Debugger里面选择"XDebug"

 

技术分享图片

技术分享图片

技术分享图片

 第六步:再在Windows->Preferences里面配置下PHP Servers

技术分享图片

技术分享图片

第七步:再在Windows->Preferences里面配置下PHP Executables

技术分享图片

技术分享图片

    第八步:再在Run->Debug Configurations里面确认Path Mapping的配置和第六步中的一致。

技术分享图片

 

   接下来,进入debug界面,就可以开始设置断点进行debug了。

以上是关于Eclipse for php + Xdebug搭建PHP的调试环境的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse PHP 的 Xdebug 问题

Eclipse++Xdebug开发php环境配置

xampp + eclipse 环境下如何调试PHP

Eclipse Xdebug 冻结在 57%

如何在适用于 Windows 的 XAMPP v3.2.1 上使用 Eclipse 配置 PHP XDebug?

将 XDebug 与 Eclipse PDT 和 XAMPP 一起使用