原发地址:http://www.94qing.com/compresshtml-for-typecho.html

插件起因
Typecho默认没有开启gzip,在更新日志和数据库都看到Typecho中有gzip的配置
加快浏览速度,减少无效字符的传输

插件说明
Typecho插件:该插件支持开启gzip、压缩HTML、HTML关键词替换
HTML关键词替换的作用:为了减轻服务器的压力,文章图片和附件都在七牛做了镜像,所以需要替换文章的图片和附件为七牛的连接

插件安装
下载好插件
进入typecho的usr/plugins目录
把插件解压到里面

插件下载
GitHub项目地址:https://github.com/qlwz/CompressHTML-For-Typecho
下载连接:https://github.com/qlwz/CompressHTML-For-Typecho/releases
本地:CompressHTML-For-Typecho-master.zip


@lonewolf
感觉不需要使用插件,我个人是不怎么喜欢使用插件的,大部分我都会集合在模板里面。

functions.php:
//网站源码压缩函数
function tp_compress_html_main($buffer){
$initial=strlen($buffer);
$buffer=explode("<!--tp-compress-html-->", $buffer);
$count=count ($buffer);
for ($i = 0; $i <= $count; $i++){
if (stristr($buffer[$i], '<!--tp-compress-html no compression-->')){
$buffer[$i]=(str_replace("<!--tp-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);
return $buffer_out;
}

//内容页面禁止PRE压缩
function unCompress($content){
if(preg_match_all('/(crayon-|<\/pre>)/i', $content, $matches)) {
$content = '<!--tp-compress-html--><!--tp-compress-html no compression-->'.$content;
$content.= '<!--tp-compress-html no compression--><!--tp-compress-html-->';
}
return $content;
}

footer.php:
$html=ob_get_contents();
ob_get_clean();
echo tp_compress_html_main($html);