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

2016年2月22日

Finally

emlog教程

  1. 首页
  2. emlog
  3. EMLOG无插件实现网站源码压缩
13条评论 收藏

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

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


以下代码是扔在module.php里面的,

function em_compress_html_main($buffer){
    $initial=strlen($buffer);
    $buffer=explode("<!--em-compress-html-->", $buffer);
    $count=count ($buffer);
    for ($i = 0; $i <= $count; $i++){
        if (stristr($buffer[$i], '<!--em-compress-html no compression-->')){
            $buffer[$i]=(str_replace("<!--em-compress-html no compression-->", " ", $buffer[$i]));
        }else{
            $buffer[$i]=(str_replace("\t", " ", $buffer[$i]));
            $buffer[$i]=(str_replace("\n\n", "\n", $buffer[$i]));
            $buffer[$i]=(str_replace("\n", "", $buffer[$i]));
            $buffer[$i]=(str_replace("\r", "", $buffer[$i]));
            while (stristr($buffer[$i], '  '))
            {
            $buffer[$i]=(str_replace("  ", " ", $buffer[$i]));
            }
        }
        $buffer_out.=$buffer[$i];
    }
    $final=strlen($buffer_out);
    $savings=($initial-$final)/$initial*100;
    $savings=round($savings, 2);
    $buffer_out.="\n<!--压缩前的大小: $initial bytes; 压缩后的大小: $final bytes; 节约:$savings% -->";
    return $buffer_out;
}

以下代码是扔在footer.php最末尾(即</html>结尾处)

<?php
if(_g('compress_html')=='open'){
        $html=ob_get_contents();
        ob_get_clean();
        echo em_compress_html_main($html);
}
?>

以上的代码有一个模板设置判断语句,其代码为以下:


'compress_html' => array(
        'type' => 'radio',
        'name' => '网站源码压缩',
        'description' => '',
        'values' => array('open' => '压缩','close' => '关闭'),
        'default' => 'open'
    ),


效果图:1.png

想要内容里面的pre不被压缩可使用以下函数:


function unCompress($content){
    if(preg_match_all('/(crayon-|<\/pre>)/i', $content, $matches)) {
        $content = '<!--em-compress-html--><!--em-compress-html no compression-->'.$content;
        $content.= '<!--em-compress-html no compression--><!--em-compress-html-->';
    }
    return $content;
}
unCompress($log_content);
<br />

独狼的教程

  • 打赏支付宝扫一扫
  • 打赏微信扫一扫
  • 打赏企鹅扫一扫

本文标签: emlog教程

版权声明:若无特殊注明,本文皆为《Finally》原创,转载请保留文章出处。

本文链接:EMLOG无插件实现网站源码压缩 - https://emlog.jiaozi.pro/post/233

发表评论

发表评论

评论:13条评论

  • pony Lv.5 评论于 江西省 移动数据上网公共出口
    表情 骚年,我怀疑你写了一篇假的文章!
  • 林羡 Lv.1 评论于 广东省惠州市 电信
    滴!学生卡!打卡时间:下午10:20:24[blockquote]表情 写得好好哟,我要给你生猴子!
    表情 骚年,我怀疑你写了一篇假的文章!
    ,请上车的乘客系好安全带~[/blockquote]
  • arham Lv.1 评论于 巴基斯坦
    论失败:评论内容需包含中文
  • Scarecrowヽ Lv.1 评论于 湖南省邵阳市 移动
    不错,来学习德国鬼子的文章了。
  • ゛自导自演 Lv.1 评论于 海南省海口市 移动
    为什么只会首页压缩呢,文章页不会压缩 表情
    Finally Lv.6 评论于 湖南省怀化市 联通
    回复了゛自导自演:可以的,QQ私聊! 表情
个人中心
今日签到
搜索