The Easiest Way to Save and Share Code Snippets on the web

CSS on the Fly

php

posted: Nov, 13th 2012 | jump to bottom

$csscache = 'cache/cache.css';
$cacheTime = filemtime($csscache);
 
if(isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $cacheTime)
{
	header("HTTP/1.0 304 Not Modified");
}
else
{
	header('Content-type: text/css');
	header('Last-Modified: ' . gmdate("D, d M Y H:i:s",$cacheTime) . ' GMT');
 
	readfile($csscache);
}
321 views