---------------------------------------------------------------------------------------------------------
php5.2版本的配置中,默认output_buffering为关闭状态,运行下面三行代码将会出现一个警告:Warning: Cannot modify header information - headers already sent
echo 'hello1';header('content-type:text/html;charset=utf-8');echo 'hello2';