php Cannot modify header information-headers already sent by解决办法
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-04 22:23:49 浏览: 评论:0
昨天在使用cookie时页面报错:php Cannot modify header information-headers already sent by了,下面我来总结关于报错的解决办法,代码如下:
- <?php
- ob_start();
- setcookie("username","宋岩宾",time()+3600);
- echo "the username is:".$HTTP_COOKIE_VARS["username"]."n";
- echo "the username is:".$_COOKIE["username"]."n";
- print_r($_COOKIE);
- ?>
Warning: Cannot modify header information - headers already sent by
出错的原因我在php程序的头部加了:
header("cache-control:no-cache,must-revalidate");
原因分析:在PHP里Cookie的使用是有一些限制的。
1、使用setcookie必须在<html>标签之前
2、使用setcookie之前,不可以使用echo输入内容
3、直到网页被加载完后,cookie才会出现
4、setcookie必须放到任何资料输出浏览器前,才送出.....
由于上面的限制,在使用setcookie()函数时,学会遇到 "Undefined index"、"Cannot modify header information - headers already sent by"…等问题,解决办法是在输出内容之前,产生cookie
解决办法
1在页面顶部的php标签中加入ob_start();
2在返回的信息下面加入ob_end_flush();
这样就可以屏蔽错误信息的现实了,但有的朋友说上面办法不行,后来我后来打开 php.ini 然后把 output_buffering 设为 on,重起appache,OK。看来这才是解决办法,另外有朋友说是编码问题,只要转换文档有uft-8就可以解决了,这里就不介绍了。
Tags: Cannot modify header
相关文章
- ·Cannot use object of type stdClass as array(2013-11-28)
- ·Fatal error: Cannot redeclare 常见问题(2013-11-29)
- ·Warning: Cannot modify header information - headers already sent by (2013-12-04)
- ·PHP Fatal error: Cannot use object of type stdClass as array in错误(2014-09-20)
- ·解决phpMyAdmin Cannot start session without errors错误(2014-09-21)
- ·phpmyadmin报错:Cannot start session without errors问题(2014-09-21)
- ·编译PHP报错configure error Cannot find libmysqlclient under usr的解决方法(2021-03-03)
- ·PHP JSON出错:Cannot use object of type stdClass as array解决方法(2021-03-31)
- ·PHP提示Cannot modify header information - headers already sent by解决方法(2021-04-13)
- ·PHP错误Warning: Cannot modify header information - headers already sent by解决方法(2021-04-14)
- ·为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法(2021-04-21)
- ·PHP动态编译出现Cannot find autoconf的解决方法(2021-04-24)
- ·header 函式的使用(2013-11-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)