本文实例讲述了php简单压缩css样式的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
$css = '' ;
//找css目录
$root = $_SERVER [ 'DOCUMENT_ROOT' ]. '/css/' ; //directory where the css lives
$files = explode ( ',' , $_SERVER [ 'QUERY_STRING' ]);
if (sizeof( $files ))
{
foreach ( $files as $file )
{
$css .= ( is_file ( $root . $file . '.css' ) ? file_get_contents ( $root . $file . '.css' ) : '' );
}
}
return str_replace ( '; ' , ';' , str_replace ( ' }' , '}' , str_replace ( '{ ' , '{' , str_replace ( array ( "\r\n" , "\r" , "\n" , "\t" , ' ' , ' ' , ' ' ), "" ,preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!' , '' , $css )))));
|
希望本文所述对大家PHP程序设计有所帮助。