怎样解决报错 Warning: Cannot modify header information – headers already sent

2014年12月18日 | 分类: 【技术】

运行PHP程序时,报错:

Warning: Cannot modify header information - headers already sent by (output started at...

方法:找到php.ini ,然后查找:output_buffering 。

output_buffering = Off

修改为:

output_buffering = On

然后重启Apache:

service httpd restart