Advertisement
konyakov

Mинификaция html кoдa в 1C-Битpикc

May 15th, 2017
2,269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. if(SITE_ID == "s1" or SITE_ID == "s2") {
  2. AddEventHandler("main", "OnEndBufferContent", "ChangeMyContent");
  3. function ChangeMyContent(&$content) {
  4. $search = array('/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s');
  5. $replace = array('>','<','\\1');
  6. $content = preg_replace($search, $replace, $content);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement