CodeIgniter警告:Cannot modify header information 请高手帮忙,该如何解决
Jun 13, 2016 pm 12:55 PM
CodeIgniter警告:Cannot modify header information 请高手帮忙
在控制器里面输入了这段代码
class Myfile1 extends CI_Controller
{
function myfile1()
{
$str=file_get_contents('./aa.txt');
$str=$str?$str:0;
$str++;
file_put_contents('./aa.txt',$str);
$str=file_get_contents('./aa.txt');
echo $str;
}
}
然后运行 结果能正确输出$str; 但输出$str后 接着显示
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at E:\AppServ\www\ci\application\controllers\myfile1.php:12)
Filename: core/Common.php
Line Number: 442
404 Page Not Found
The page you requested was not found.
不知道什么原因 请高手指点!!!
------解决方案--------------------
建议给php装个xdebug,可以输出一个错误的所有追踪信息,然后你就知道这个header输出是怎么被调用的了
------解决方案--------------------
程序已经告诉你问题所在了
headers already sent by (output started at E:\AppServ\www\ci\application\controllers\myfile1.php:12)
意思是在E:\AppServ\www\ci\application\controllers\myfile1.php第12出了状况.在header之前有内容输出
因为header头之前是绝对不能有内容输出的,所以就出现了你目前的状况.看看自己的代码,在哪里有不该出现的echo;print之类的玩意输出了内容.

인기 기사

인기 기사

뜨거운 기사 태그

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Windows 11에서 창 테두리 설정을 조정하는 방법: 색상 및 크기 변경

Windows 11에서 제목 표시줄 색상을 변경하는 방법은 무엇입니까?

Windows 11에서 작업 표시줄 축소판 미리 보기를 활성화 또는 비활성화하는 방법

Safari에서 iPhone의 개인 브라우징 인증을 끄는 방법은 무엇입니까?
