Eclipse for php + Xdebug搭建PHP的調試環境

第一步:到Eclipse的官網去下載PHP-Eclipse:http://www.eclipse.org/downloads/packages/eclipse-php-developers/heliossr1php

第二步:下載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目錄中。ios

 

    第三步:在PHP5裏面找到php.ini,在這個文件的最後面加入以下配置信息:apache

zend_extension = D:\php\ext\php_xdebug-2.2.3-5.3-vc9.dllapp

;zend_extension_ts = D:\php\ext\php_xdebug-2.2.3-5.3-vc9.dlleclipse

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

[Xdebug]debug

xdebug.auto_trace = On3d

xdebug.show_exception_trace = Oncode

xdebug.remote_autostart = Onblog

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了。

相關文章
相關標籤/搜索