PHP 5.3.27的正确xdebug dll是什么?

PHP 5.3.27的正确xdebug dll是什么?,php,netbeans,xdebug,Php,Netbeans,Xdebug,我已经尝试了下面提到的4种不同的xdebug DLL,当我继续看到消息“等待连接netbeans xdebug”时,它们似乎都不能与netbeans一起工作: My php.ini包含以下内容: [XDebug] zend_extension_ts = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll" zend_extension = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll

我已经尝试了下面提到的4种不同的xdebug DLL,当我继续看到消息“等待连接netbeans xdebug”时,它们似乎都不能与netbeans一起工作:

My php.ini包含以下内容:

[XDebug]
zend_extension_ts = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"
zend_extension = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"
extension = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"

xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
我解决了这个问题

首先,我需要放下电话线

zend_extension_ts = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"
zend_extension = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"
extension = "C:\Program Files\PHP\ext\php_xdebug-2.0.2-5.3.0.dll"
Machavity建议从xdebug网站下载php_xdebug-2.2.3-5.3-vc9.dll。然后我用以下几行更新了php.ini文件

[XDebug]
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000

zend_extension = "C:\Program Files\PHP\ext\php_xdebug-2.2.3-5.3-vc9.dll"`
注意:PHP5.3不喜欢zend_扩展


我重新启动了Apache,netbeans现在连接到Xdebug

您使用哪种类型的WAMP堆栈?笨蛋?容易吗?还有什么?我分别安装了PHP、Apache和netbeans软件,您使用的是哪个版本的PHP?我猜是VC9。线程安全还是非线程安全?PHP扩展构建API20090626,TS,VC9。线程安全好的,您在xdebug站点上试用过DLL吗?
[XDebug]
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000

zend_extension = "C:\Program Files\PHP\ext\php_xdebug-2.2.3-5.3-vc9.dll"`