繁体   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