为什么 xdebug 没有出现在 phpinfo() 中
我正在尝试进行以下设置工作:
- Windows 7 - 64-位
- XAMPP 1.7.4
- XDebug [php_xdebug-2.1.0-5.3-vc9-x86_64.dll]
当我从 Xampps 主页运行 phpinfo() 时,XDebug 是没有在任何地方列出。我检查了Apache错误日志,没有错误,所以看起来加载模块没有问题?我已经很多年没有使用 PHP 了,所以我不知道为什么它不起作用。
[PHP.ini]
[XDebug]
zend_extension_ts = "C:\xampp\php\ext\php_xdebug-2.1.0-5.3-vc9-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
I am trying to get the following to setup work:
- Windows 7 - 64-bit
- XAMPP 1.7.4
- XDebug [php_xdebug-2.1.0-5.3-vc9-x86_64.dll]
When I run phpinfo() from Xampps homepage, XDebug it is not listed anywhere. I checked the Apache error logs and there are no errors, so it seems to load the module without problem? I haven't used PHP in years so I have no clue why this isn't working.
[PHP.ini]
[XDebug]
zend_extension_ts = "C:\xampp\php\ext\php_xdebug-2.1.0-5.3-vc9-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你没有正确的编译器版本。将 phpinfo 的输出复制到 此 页面,它会告诉您需要哪个版本。
I think you don't have the right compiler version. Copy the output of your phpinfo onto this page and it will tell you which version you need.
打印出你的
并查看“Compiler”行
At home (win7x64 + wamp) => MSVC6 (Visual C++ 6.0)
所以你需要 vc6版本不是vc9版本
Print out your
and look at "Compilater" line
At home (win7x64 + wamp) => MSVC6 (Visual C++ 6.0)
So you need the vc6 version not vc9 version