Debugging 用于eclipse php调试的php.ini文件

Debugging 用于eclipse php调试的php.ini文件,debugging,xampp,php-ini,Debugging,Xampp,Php Ini,我一直在到处搜索,仍然无法使用“eclipse for PHP Developers 3.0.2”进行调试 目前eclipse的“启动:等待XDebug会话”仅占57%。但是当eclipse挂起时,php文件会在外部浏览器中打开并运行 我正在为web服务器使用'xampp3.1.0.3.1.0',并且在PHPEXT文件夹中有相应的'php_xdebug.dll'文件 我尝试过其他论坛的许多设置,但仍然没有成功,下面是我的XDebug的php.ini文件配置: [XDebug] zend_exte

我一直在到处搜索,仍然无法使用“eclipse for PHP Developers 3.0.2”进行调试

目前eclipse的“启动:等待XDebug会话”仅占57%。但是当eclipse挂起时,php文件会在外部浏览器中打开并运行

我正在为web服务器使用'xampp3.1.0.3.1.0',并且在PHPEXT文件夹中有相应的'php_xdebug.dll'文件

我尝试过其他论坛的许多设置,但仍然没有成功,下面是我的XDebug的php.ini文件配置:

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dllstack"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 0n
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"

有人知道我需要更改什么吗?

似乎配置设置不正确,使用的好工具是

下载了新版本,将其添加到php/ext并更新了php.ini:

[XDebug]
zend_extension = \xampp\php\ext\php_xdebug-2.2.2-5.4-vc9.dll
;zend_extension = "\xampp\php\ext\php_xdebug.dll"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
;xdebug.remote_enable = 0
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"