Emlog无插件实现网站源码压缩

在以往的Emlog优化教程中,相信都是使用的代码压缩插件,今天主要是分享插件的代码版本,也就是不使用插件,直接将代码丢在module.php中就可以,好吧,又消灭一个插件!
以下代码是扔在module.php里面的

 //全站代码压缩 function slys($sheli){$initial=strlen($sheli);$sheli=explode("",$sheli);$count=count($sheli); for($i=0;$i<=$count;$i++){if(stristr($sheli[$i], '')){$sheli[$i]=(str_replace("", " ", $sheli[$i]));}else{$sheli[$i]=(str_replace("\t", " ", $sheli[$i]));$sheli[$i]=(str_replace("\n\n", "\n", $sheli[$i]));$sheli[$i]=(str_replace("\n", "", $sheli[$i]));$sheli[$i]=(str_replace("\r", "", $sheli[$i]));while (stristr($sheli[$i], ' ')){$sheli[$i]=(str_replace(" ", " ", $sheli[$i]));}}$sheli_out.=$sheli[$i];}$final=strlen($sheli_out);$savings=($initial-$final)/$initial*100;$savings=round($savings,2);$sheli_out.="\n";return $sheli_out;} ?>
以下代码是扔在footer.php最末尾(即后面)
 $html=ob_get_contents();ob_get_clean();echo slys($html);?>
如果要实现不压缩pre中的代码,要在module.php里面的加入下面代码
 //不压缩pre function slbys($content){if(preg_match_all('/(crayon-|<\/pre>)/i',$content,$matches)){$content = ''.$content;$content.= '';}return $content;}slbys($log_content);?>
然后在echo_log.php、page.php文件中的$log_content用下面代码替换
slbys($log_content)

1、本网站名称:源码村资源网
2、本站永久网址:https://www.yuanmacun.com
3、本网站的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行删除处理。
4、本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
6、本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
源码村资源网 » Emlog无插件实现网站源码压缩
您需要 登录账户 后才能发表评论

发表评论

欢迎 访客 发表评论