复制代码 代码如下:
ob_start("ob_gzhandler");
header("Content-type: text/css; charset: UTF-8");
header("Expires: ".gmdate("D, d M Y H:i:s", time() + 60*60)." GMT");
include('somefile.css');
echo "nn";
include('anotherfile.css');
echo "nn";
ob_flush();



