安装 xdebug 后 PHP 标头重定向不起作用
<?php
$url = 'http://google.com/';
header('Location: ' . $url);
php.ini 中的 xdebug 设置是:
zend_extension=path_to_xdebug.dll
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
只要我删除 xdebug 设置,上面的 header()
重定向就会起作用。
有人遇到过这个问题吗?
<?php
$url = 'http://google.com/';
header('Location: ' . $url);
The xdebug setting in php.ini is:
zend_extension=path_to_xdebug.dll
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
The above header()
redirection will work as long as I remove the xdebug setting.
Anyone met this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://bugs.xdebug.org/view.php?id=532
http://bugs.xdebug.org/view.php?id=532
这是 xdebug 中的一个错误,您可能需要检查您的 xdebug 版本并将其更新到最新版本。
如果我没记错的话,在 http://bugs.xdebug.org 上有一些相同问题的帖子
他们已经解决了。
- 编辑 -
看起来其他人确实在 http://bugs.xdebug.org/ 上搜索并找到了它view.php?id=532 当我输入我的原始回复时。
This was a bug in xdebug, you may want to check your xdebug version and update it to the latest.
If I remember correctly, there were a few postings of the same issue at http://bugs.xdebug.org
They have been resolved.
--Edit--
Looks like someone else actually searched and found it at http://bugs.xdebug.org/view.php?id=532 as I was typing my original response.