使用PHP压缩CSS

Avatar of Chris Coyier
Chris Coyier

以这段PHP代码开始你的CSS文件(并将其命名为style.php)

<?php
    ob_start ("ob_gzhandler");
    header("Content-type: text/css; charset: UTF-8");
    header("Cache-Control: must-revalidate");
    $offset = 60 * 60 ;
    $ExpStr = "Expires: " .
    gmdate("D, d M Y H:i:s",
    time() + $offset) . " GMT";
    header($ExpStr);
?>

body { color: red; }

然后使用PHP文件名调用你的CSS

<link rel='stylesheet' type='text/css' href='css/style.php' />