在以往的 emlog 优化教程中,相信都是使用的代码压缩插件,今天主要是分享插件的代码版本,也就是不使用插件,直接将代码写在 module.php 中就可以,好吧,又消灭一个插件!
以下代码是写在 module.php 里面
<?php
function em_compress_html($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 .= PHP_EOL . "<!--压缩前的大小: $initial bytes; 压缩后的大小: $final bytes; 节约:$savings% -->";
return $buffer_out;
}
?>
以下代码放在 footer.php 最末尾(即结尾处)
<?php
if (_g('compress_html') == 'open') {
$html = ob_get_contents();
ob_get_clean();
echo em_compress_html($html);
}
?>
以上的代码有一个模板设置判断语句,其代码为以下(放在 options.php 里面)
'compress_html' => array(
'type' => 'radio',
'name' => '网站源码压缩',
'description' => '将HTML的空格和空行删除,保留pre里面的格式,压缩输出的HTML~',
'values' => array('open' => '开启', 'close' => '关闭'),
'default' => 'open'
),
如果你想要实现不压缩 pre(就是网页中插入的代码,这样就能显示代码的排版)中的代码,要在 module.php 里面的加入下面代码。
<?php
function unCompress($content)
{
if (preg_match_all('/(<pre|<\/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;
}
?>
然后找到模版文件夹下的 echo_log.php(文章内容页面)、page.php(评论页面)文件中的 $log_content 替换掉。
<?php echo $log_content; ?>
// 替换为
<?php echo unCompress($log_content); ?>
不压缩 pre 的解决方法二,直接把第一步的 module.php 里面的 em_compress_html 修改一下
<?php
function em_compress_html($buffer)
{
$initial = strlen($buffer);
$buffer = preg_replace('/<pre/', '<!--em-compress-html--><!--em-compress-html no compression--><pre', $buffer);
$buffer = preg_replace('/<\/pre/', '<!--em-compress-html no compression--><!--em-compress-html--></pre', $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 .= PHP_EOL . "<!--压缩前的大小: $initial bytes; 压缩后的大小: $final bytes; 节约:$savings% -->";
return $buffer_out;
}
?>