最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

Warning: Cannot modify header information - headers already

时间:2014-06-09 16:39来源: 作者: 点击:
如果在执行php程序时看到这条警告:Warning: Cannot modify header information - headers already sent by ..... 有以下几种解决方法: 1. Blank lines (空白行): ,检查 后面没有空白行,特别是include或者require的文件.不少

如果在执行php程序时看到这条警告:"Warning: Cannot modify header information - headers already sent by ....".

有以下几种解决方法:

1. Blank lines (空白行):

,检查 后面没有空白行,特别是include或者require的文件.不少问题是这些空白行导致的。

2. Use exit statement (用exit来解决):在header后加上exit();

header ("Location: xxx");exit();

3.用Javascrīpt来解决:

self.location( file.php );"; ?>

可以用Javascrīpt来代替header。另外需要注意,采用这种方法需要浏览器支持Javascrīpt.

4. 用输出缓存来解决:

  1.  
  2. ... HTML codes ... 
  3. ... PHP codes ... 
  4. header ("Location: ...."); 
  5. ob_end_flush(); 
  6. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容