当PHP.INI文件中的output_buffering参数值不是Off时,在输出内容后再调用header()函数也不会显示warning信息,比如:
<?php
print "This will raise a warning.";
header('Content-type: text/plain');
?>
将output_buffering参数值设置成Off后,执行上述脚本将显示warning信息。
当PHP.INI文件中的output_buffering参数值不是Off时,在输出内容后再调用header()函数也不会显示warning信息,比如:
<?php
print "This will raise a warning.";
header('Content-type: text/plain');
?>
将output_buffering参数值设置成Off后,执行上述脚本将显示warning信息。