最新消息: 新版网站上线了!!!

php压缩css样式

  1. $css = ''
  2. //找css目录 
  3. $root = $_SERVER['DOCUMENT_ROOT'].'/css/'//directory where the css lives 
  4. $files = explode(',',$_SERVER['QUERY_STRING']); 
  5. if(sizeof($files)) 
  6.     foreach($files as $file
  7.     { 
  8.         $css.= (is_file($root.$file.'.css') ? file_get_contents($root.$file.'.css') : ''); 
  9.     } 
  10. return str_replace('; ',';',str_replace(' }','}',str_replace('{ ','{',str_replace(array("\r\n","\r","\n","\t",'  ','    ','    '),"",preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!','',$css))))); 

 

转载请注明:谷谷点程序 » php压缩css样式