本文實例講述了PHP提示Cannot modify header information - headers already sent by解決方法,是進行PHP程序設計過程中經常會遇到的問題。本文對此以實例形式分析解決方法。分享給大家供大家參考。具體方法如下:
現來看看這段代碼:
<?php ob_start(); setcookie("username","test",time()+3600); echo "the username is:".$HTTP_COOKIE_VARS["username"]."\n"; echo "the username is:".$_COOKIE["username"]."\n"; print_r($_COOKIE); ?>
訪問該PHP文件時提示Warning: Cannot modify header information - headers already sent by
出錯的原因:
原因是在php程序的頭部加了,header("content-type: text/html; charset=utf-8");之後頁面就出現上面的錯誤。
因為 header('Content-Type:text/html;charset= UTF-8');發送頭之前不能有任何輸出,空格也不行,你需要將header(...)之前的空格去掉,或者其他輸出的東西去掉,如果他上面include其他文件了,你還要檢查其他文件裡是否有輸出。
上網查了一些資料,說是我的php.ini裡面的配置出了問題,找到php.ini文件中的output_buffering默認為off的,把它改為on或者任意一個數字,但嘗試無結果。
setcookie函數必須在任何資料輸出至浏覽器前,就先送出
基於上面這些限制,所以執行setcookie()函數時,常會碰到"Undefined index"、"Cannot modify header information - headers already sent by"…等問題,解決"Cannot modify header information - headers already sent by"這個錯誤的方法是在產生cookie前,先延緩資料輸出至浏覽器,因此,您可以在程序的最前方加上ob_start()函數。
ob_start()函數用於打開緩沖區,比如header()函數之前如果就有輸出,包括回車\空格\換行\都會有"Header had all ready send by"的錯誤,這時可以先用ob_start()打開緩沖區PHP代碼的數據塊和echo()輸出都會進入緩沖區而不會立刻輸出!
通過以下方法,問題得到解決:
//在header()之前 ob_start(); //打開緩沖區 echo \"Hellon\"; //輸出 header("location:index.php"); //把浏覽器重定向到index.php ob_end_flush();//輸出全部內容到浏覽器 ?>
希望本文所述對大家PHP程序設計的學習有所幫助。