php Cannot modify header information - headers already sent_PHP教程
程序员文章站
2022-04-02 09:17:48
...
本文章介绍了多种关于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来解决):
代码如下 | 复制代码 |
echo ""; ?> |
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(); ?> |
上一篇: 查看so文件,readelf_PHP教程
下一篇: php网上商城购物车代码一例
推荐阅读
-
Cannot modify header information有关问题的解决办法(php)
-
完美解决PHP中的Cannot modify header information 问题
-
setcookie中Cannot modify header information-headers already sent by错误的解决方法详解
-
PHP提示Cannot modify header information - headers already sent by解决方法
-
PHP setcookie() cannot modify header information 的解决方法
-
php出现Cannot modify header information问题的解决方法大全
-
PHP错误Warning: Cannot modify header information - headers already sent by解决方法
-
完美解决PHP中的Cannot modify header information 问题
-
完美解决PHP中的Cannot modify header information 问题
-
php出现Cannot modify header information问题的解决方法