eclipse php外掛安裝的方法:首先安裝eclipse;然後設定php執行環境;然後接著依次開啟「Prefences→PHP→Debug」;最後開啟Installed Debuggers並選擇XDebug即可。
1、首先安裝eclipse,到官網自行下載即可,這裡不再詳細描述eclipse的安裝步驟
2、php外掛地址: http://www.eclipse.org/pdt/,裡面講的很詳細,可以選擇直接下載已經安裝好php外掛的eclipse,也可以在現有的eclipse中直接安裝php外掛,兩種方式隨便選擇
3、安裝wampServer,這個是執行php的整合環境,你也可以選擇其他環境,這裡網上下載,直接安裝即可
4、設定php執行環境
(1)設定php本地run
1.開啟Prefences→PHP→PHP Executables→Execution Environments →Add
2.開啟Prefences→PHP→Debug
3)設定php遠端Debug環境
1.啟動wamp,開啟 PHP→php.ini 在結尾處加入 以下程式碼
2.重新啟動wamp
zend_extension = "d:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll" [xdebug] xdebug.profiler_enable=on xdebug.trace_output_dir="d:/wamp/logs/xdebug-log" ;xdebug 的資料檔案目錄 xdebug.profiler_output_dir="d:/wamp/logs/xdebug-log" ;xdebug 的資料檔案目錄 xdebug.auto_trace = On ;開啟自動跟蹤 xdebug.show_exception_trace = On ;開啟異常跟蹤 xdebug.remote_autostart = On ;開啟遠端偵錯自動啟動 Off 關閉遠端debug可以將此項設定為Off xdebug.remote_enable = On ;開啟遠端偵錯 xdebug.remote_handler=dbgp ;用於zend studio遠端偵錯的應用層通訊協定 xdebug.remote_host=127.0.0.1 ;允許連線的zend studio的IP地址 xdebug.remote_port=9000 ;反向連線zend studio使用的埠 xdebug.collect_vars = On ;收集變數 xdebug.collect_return = On ;收集返回值 xdebug.collect_params = On ;收集引數 xdebugbug.max_nesting_level = 10000
2.開啟Prefences→PHP→Debug→Installed Debuggers 選擇 XDebug
3.將測試test.php放在D:wampwww目錄下
在位址列輸入http://localhost/test.php eclipse中會產生斷點
說明:
eclipse在選擇工作空間的時候將工作空間直接選擇到wamp的www目錄下,
這樣更加方便。
以上就是eclipse php外掛安裝的方法的詳細內容,更多請關注TW511.COM其它相關文章!