Bacysoft.cn

标题: PHP Warning: Cannot modify header information [打印本页]

作者: bacy001    时间: 2012-7-4 17:33
标题: PHP Warning: Cannot modify header information
今天在调试PHP脚本时出现了如下错误提示:
  1. PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/public_html/test/index.php:14) in /home/public_html/test/index.php on line 42
复制代码
出错的脚本代码是(index.php on line 42):
  1.         header("HTTP/1.1 301 Moved Permanently");
  2.         header("location: http://www.juxin-jixie.com");
复制代码
引起出错的脚本是(ndex.php:14):
  1.         echo "http://www.bacysoft.cn";
复制代码
错误原因:在使用 header 命令进行页面跳转之前不能向客户端有任何形式的数据输出。

解决办法:删除 header 之前的相关输出代码即可。




欢迎光临 Bacysoft.cn (http://bacysoft.cn/) Powered by Discuz! X3.3