Yii 2.x html 代码压缩

Posted ~~逍遥~~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii 2.x html 代码压缩相关的知识,希望对你有一定的参考价值。

 

<?php

namespace Pangu\web;

use yii\base\Component;

/**
 * html格式响应内容格式化
 * @author zhouzhian
 *
 */
class HtmlResponseFormatter extends \yii\web\HtmlResponseFormatter
{

    /**
     * 格式化响应内容
     */
    public function format($response)
    {
        if (stripos($this->contentType, ‘charset‘) === false) {
            $this->contentType .= ‘; charset=‘ . $response->charset;
        }
        $response->getHeaders()->set(‘Content-Type‘, $this->contentType);
        if ($response->data !== null) {
            $tmplContent = $response->data;
            // 去除html空格与换行
            $find           = array("~>\s+<~","~>(\s+\n|\r)~");
            $replace        = array(‘><‘,‘>‘);
            $tmplContent    = preg_replace($find, $replace, $tmplContent);
            $response->content = $tmplContent;
        }
    }
}

 

以上是关于Yii 2.x html 代码压缩的主要内容,如果未能解决你的问题,请参考以下文章

Yii2片段缓存详解

[YII2] 视图层过滤客户恶意代码

如何在 Yii 中缩小除 jQuery 之外的所有资产?

VSCode自定义代码片段5——HTML元素结构

VSCode自定义代码片段5——HTML元素结构

VSCode自定义代码片段5——HTML元素结构