簡體   English   中英

如何使用Eclipse PDT和XAMPP安裝XDebug

[英]How to install XDebug with Eclipse PDT and XAMPP

有人可以告訴我如何安裝XDebug並將其與我現有的XAMPP和Eclipse PDT集成。 謝謝。

該站點經歷了非常徹底的安裝過程。 它說明了如何安裝XDebug,以及如何將它與Eclipse集成。 然而,唯一的缺點是php.ini配置。 如果你使用它給你的那個,XDebug將無法正確加載。 我建議這樣:

[XDebug]
;; Only Zend OR (!) XDebug
; Modify the filename below to reflect the .dll version of your xdebug
zend_extension="C:\xampp\php\ext\php_xdebug-2.1.1-5.3-vc9.dll"
xdebug.remote_enable=1
xdebug.remote_host=localhost  ; if debugging on remote server,
                      ; put client IP here
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\xampp\tmp"
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = "xdebug_profile.%R::%u"
xdebug.trace_output_dir = "C:\xampp\tmp"

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM