/ Published in: PHP
As simple as it can be. An PHP minifier. All the credits go to his author, Kit MacAllister
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Minify CSS */ function minifyCSS($string){ /* Strips Comments */ /* Minifies */ return $string; }
URL: http://kitmacallister.com/2011/minify-css-with-php/