PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
- $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压缩css样式