安装 xdebug 后 PHP 标头重定向不起作用

发布于 2024-09-02 06:29:56 字数 365 浏览 4 评论 0原文

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我恋#小黄人 2024-09-09 06:29:56

这是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文