为什么 header() 会阻止页面在我的开发环境 ( MAMP PRO ) 中加载?

发布于 2024-10-13 06:16:55 字数 236 浏览 3 评论 0原文

我想知道是否有人知道为什么突然在我的 MAMP PRO 上页面只会加载到 header() 函数。

我正在使用的标头调用的一个示例是:

header('Location: /index_signedIn.php');
exit();

我已经尝试过我的其他网站,它做了同样的事情。

任何想法都会非常有帮助。

提前致谢。

I was wondering if anyone had a clue as to why all of sudden on my MAMP PRO why the page will only load up to the header() function.

An example of a header call I'm using would be:

header('Location: /index_signedIn.php');
exit();

I have tried my other sites and it does the same thing.

Any idea would be very helpful.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

人间不值得 2024-10-20 06:16:55

header() 调用“突然停止工作”时,您可以使用 headers_sent 函数来确定之前发生输出的位置:

if (headers_sent($file,$line))
    die("Headers have been sent in $file, line $line");
else {
    header('Location: /index_signedIn.php');
    exit();
}

jeroen指出,另一个PHP文件可能触发了数据的输出。例如,如果包含的文件以 \n\n 开头,则足以触发输出刷新。

When header() calls "suddenly stop working", you might use the headers_sent function to determine where output has occured before:

if (headers_sent($file,$line))
    die("Headers have been sent in $file, line $line");
else {
    header('Location: /index_signedIn.php');
    exit();
}

As jeroen has pointed out, another PHP file might have triggered outputting of data. It's enough to trigger output flushing if for example an included file begins with \n\n<?php.

淡淡の花香 2024-10-20 06:16:55

只是一个猜测;也许您在调用 heading() 之前将数据输出到浏览器?它可以是任何内容,空格,?> 标记后的换行符等。

您可以检查错误日志中的消息吗?

Just a guess; perhaps you are outputting data to the browser before the call to heading()? It could be anything, a space, a new-line after a ?> tag, etc.

Can you check for messages in the error log?

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