本文章介紹了多種關於php Cannot modify header information - headers already sent by set 解決方案 ,有需有的朋友可以參考一下。
在 php 設定檔 php.ini 中將 output_buffering 設定為 On。開啟即可。
output_buffering = On
-------------------------------
All or nothing, now or never.
有以下幾種解決方案:
1. Blank lines (空白行):
Make sure no blank line after of the calling php script.
檢查有 後面沒有空白行,特別是include或者require的檔案。不少問題是這些空白行導致的。
2. Use exit statement (用exit來解決):
| 代碼如下 |
複製代碼 |
Use exit after header statement seems to help some people 在header後加上exit(); header ("Location: xxx"); exit(); |
Use Javascript (用Javascript來解決):
Since it's a script, it won't modify the header until execution of Javascript.
可以用Javascript來代替header。但是上面的這段代碼我沒有執行成功... 另外需要注意,採用這種方法需要瀏覽器支援Javascript.
3b. Use output buffering (用輸出緩衝來解決):
| 代碼如下 |
複製代碼 |
... HTML codes ... ... PHP codes ... header ("Location: ...."); ob_end_flush(); ?> |
http://www.bkjia.com/PHPjc/632237.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632237.htmlTechArticle本文章介紹了多種關於php Cannot modify header information - headers already sent by set 解決方案 ,有需有的朋友可以參考一下。 在 php 設定檔 php.ini...