“未知” PHP 错误 - 这是什么意思?
可能的重复:
如何修复 PHP 中的“标头已发送”错误
[2011 年 1 月 10 日星期一 21:01:26] [错误] [客户端 xx.xx.xxx.xx] PHP 警告:无法修改标头信息 - 标头已在第 0 行的“未知”中发送,引荐来源:www.example。 com/some.php
为什么 PHP 无法定位标头的发送位置?
Possible Duplicate:
How to fix “Headers already sent” error in PHP
[Mon Jan 10 21:01:26 2011] [error] [client xx.xx.xxx.xx] PHP Warning: Cannot modify header information - headers already sent in Unknown on line 0, referer: www.example.com/some.php
Why PHP is not able to locate where the headers were sent from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看
后面是否有空格。 header 函数非常敏感,如果事先输出任何内容,则该函数不起作用。
See if you have a space after
<?
. The header function is quite sensitive and doesnt work if anything is outputted before hand.