我安装了最新的XAMPP软件包,其中包括
PHP 5.3.0.我正在尝试启用Xdebug,但它不起作用.
; uncommented zend_extension = "X:\xampp\PHP\ext\PHP_xdebug.dll" ; added the following lines: xdebug.remote_enable=true xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.remote_handler=dbgp
Apache启动正常,但是当我在浏览器中打开http:// localhost /时,我收到以下错误:
如果单击“关闭程序”按钮,错误消息将在一秒钟内重新出现,就好像它处于无限循环中一样.我非常感谢能帮助你实现这一目标.
我正在运行全新安装的Windows 7 Ultimate 64位.
编辑:
从PHPinfo()的结果:
Zend Extension Build API220090626,TS,VC6 PHP Extension Build API20090626,VC6 Debug Build no Thread Safety enabled
你可能有错误版本的Xdebug.我会看看
phpinfo()并将其中的信息与
different versions of the Xdebug dll进行比较.
原文链接:https://www.f2er.com/php/240265.html具体来说,你想看看是否启用了“线程安全”,你需要知道你是在运行VC6编译的PHP还是VC9(如果你使用的是Apache,几乎可以保证你想要VC6).