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
#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
以上是eclipse php插件安裝的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!