用PHP缩小CSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP缩小CSS相关的知识,希望对你有一定的参考价值。

As simple as it can be. An php minifier. All the credits go to his author, Kit MacAllister
  1. /* Minify CSS */
  2. function minifyCSS($string){
  3.  
  4. /* Strips Comments */
  5. $string = preg_replace('!/*.*?*/!s','', $string);
  6. $string = preg_replace('/ s* /'," ", $string);
  7.  
  8. /* Minifies */
  9. $string = preg_replace('/[ ]/',' ', $string);
  10. $string = preg_replace('/ +/',' ', $string);
  11. $string = preg_replace('/ ?([,:;{}]) ?/','$1',$string);
  12. return $string;
  13. }

以上是关于用PHP缩小CSS的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用php压缩和缩小CSS

PHP 自动缩小。有没有?

PHP 缩小和组合CSS文件

PHP 缩小CSS

超级有用的9个PHP代码片段

PHP必用代码片段