Guest User

Untitled

a guest
Feb 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. header('Content-type: text/css');
  3. ob_start("compress");
  4.  
  5. function compress( $min ){
  6. $min = preg_replace( '!/*[^*]**+([^/][^*]**+)*/!', '', $min );
  7. $min = str_replace( array("rn", "r", "n", "t", ' ', ' ', ' '), '', $min );
  8. return $min;
  9. }
  10.  
  11. include('stylesheet-1.css');
  12. include('stylesheet-2.css');
  13. include('stylesheet-3.css');
  14.  
  15. ob_end_flush();
  16. ?>
Add Comment
Please, Sign In to add comment