当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii2压缩PHP中模板代码的输出问题

发布:smiling 来源: PHP粉丝网  添加日期:2021-10-26 10:23:30 浏览: 评论:0 

在Web开发中,无论是PHP的框架还是Python的框架,都会遇到使用模板的时候,在使用模板的时候就会遇到一个问题,就是使用模板编写的代码通过查看源代码的时候,会发现代码混乱不堪,对于代码格式又嫉妒追求的我来说我因受不了,但是目前也没有找到什么好的格式化输出的办法。

但是格式化输出的话,也会需要处理一个压缩的问题,最终还是选择一个方案,开发的时候为了查看代码修改代码,就不做处理,但是上线的时候还是要做下压缩的处理,就是将无用的空格或者换行之类的全部删除掉。

问题前提已经抛出,现在看看如何解决这个问题,为了防止重复早轮子网上也查了一遍,结果也找到了,但是用composer安装的时候又是各种的不兼容,于是看了下源代码,其实很简单。这里我就简答的说下如何使用

具体的逻辑我就不多说了,其实自己理解了下面的使用流程,自己改写也不是太难的事情

第一步 功能开发

创建两个文件一个是components/HtmlMinify.php,代码逻辑如下

  1. <?php 
  2. namespace app\components; 
  3. use app\helpers\HtmlMinifyHelper; 
  4. use Yii; 
  5. use yii\base\Component; 
  6. use yii\base\Event; 
  7. use yii\web\Response; 
  8. use yii\web\View; 
  9. class HtmlMinify extends Component 
  10.  /** 
  11.   * Minify html. Process before response send 
  12.   * @var bool 
  13.   */ 
  14.  public $html = false; 
  15.  /** 
  16.   * Minify css on page, added by registerCss. Process before render page in view component 
  17.   * @var bool 
  18.   */ 
  19.  public $css = false; 
  20.  /** 
  21.   * Minify css on page. Process before render page in view component 
  22.   * @var bool 
  23.   */ 
  24.  public $js = false; 
  25.  /** 
  26.   * Response formats list, where enable minify html 
  27.   * @var array 
  28.   */ 
  29.  public $formats = [ 
  30.   Response::FORMAT_HTML, 
  31.  ]; 
  32.  public function init() 
  33.  { 
  34.   /** @var $this View */ 
  35.   Yii::$app->view->on(View::EVENT_END_PAGE, [$this'onEventEndPage']); 
  36.   Yii::$app->response->on(Response::EVENT_BEFORE_SEND, [$this'onEventBeforeSend']); 
  37.  } 
  38.  public function onEventEndPage(Event $event
  39.  { 
  40.   $view = $event->sender; 
  41.   if ($this->css && !emptyempty($view->css)) { 
  42.    foreach ($view->css as &$css) { 
  43.     $css = HtmlMinifyHelper::css($css); 
  44.    } 
  45.   } 
  46.   if ($this->js && !emptyempty($view->js)) { 
  47.    foreach ($view->js as &$list) { 
  48.     foreach ($list as &$js) { 
  49.      $js = HtmlMinifyHelper::js($js); 
  50.     } 
  51.    } 
  52.   } 
  53.  } 
  54.  public function onEventBeforeSend(Event $event
  55.  { 
  56.   $response = $event->sender; 
  57.   if ($this->html & in_array($response->format, $this->formats)) { 
  58.    if (!emptyempty($response->data)) { 
  59.     $response->data = HtmlMinifyHelper::html($response->data); 
  60.    } 
  61.    if (!emptyempty($response->content)) { 
  62.     $response->content = HtmlMinifyHelper::html($response->content); 
  63.    } 
  64.   } 
  65.  } 

另外一个文件上是helpers/HtmlMinifyHelper.php,代码逻辑如下

  1. <?php 
  2. namespace app\helpers; 
  3. class HtmlMinifyHelper 
  4.  public static function html($input
  5.  { 
  6.   if (trim($input) === "") { 
  7.    return $input
  8.   } 
  9.   // Remove extra white-space(s) between HTML attribute(s) 
  10.   $input = preg_replace_callback('#<([^\/\s<>!]+)(?:\s+([^<>]*?)\s*|\s*)(\/?)>#s'function ($matches) { 
  11.    return '<' . $matches[1] . preg_replace('#([^\s=]+)(\=([\'"]?)(.*?)\3)?(\s+|$)#s'' $1$2'$matches[2]) . $matches[3] . '>'
  12.   }, str_replace("\r"""$input)); 
  13.   // Minify inline CSS declaration(s) 
  14.   if (strpos($input' style=') !==false){   $input=preg_replace_callback('#<([^<]+?)\s+style=([\'"])(.*?)\2(?=[\/\s>])#s',function ($matches){    return '<' . $matches[1] . ' style=' . $matches[2] . self::css($matches[3]) . $matches[2]; 
  15.    }, $input); 
  16.   } 
  17.   return preg_replace( 
  18.    [ 
  19.     // t = text 
  20.     // o = tag open 
  21.     // c = tag close 
  22.     // Keep important white-space(s) after self-closing HTML tag(s) 
  23.     '#<(img|input)(>| .*?>)#s'
  24.     // Remove a line break and two or more white-space(s) between tag(s) 
  25.     '#(<!--.*?-->)|(>)(?:\n*|\s{2,})(<)|^\s*|\s*$#s'
  26.     '#(<!--.*?-->)|(?<!\>)\s+(<\/.*?>)|(<[^\/]*?>)\s+(?!\<)#s'// t+c || o+t 
  27.     '#(<!--.*?-->)|(<[^\/]*?>)\s+(<[^\/]*?>)|(<\/.*?>)\s+(<\/.*?>)#s'// o+o || c+c 
  28.     '#(<!--.*?-->)|(<\/.*?>)\s+(\s)(?!\<)|(?<!\>)\s+(\s)(<[^\/]*?\/?>)|(<[^\/]*?\/?>)\s+(\s)(?!\<)#s'// c+t || t+o || o+t -- separated by long white-space(s) 
  29.     '#(<!--.*?-->)|(<[^\/]*?>)\s+(<\/.*?>)#s'// empty tag 
  30.     '#<(img|input)(>| .*?>)<\/\1>#s'// reset previous fix 
  31.     '#( ) (?![<\s])#'// clean up ... 
  32.     '#(?<=\>)( )(?=\<)#'// --ibid 
  33.     // Remove HTML comment(s) except IE comment(s) 
  34.     '#\s*<!--(?!\[if\s).*?-->\s*|(?<!\>)\n+(?=\<[^!])#s'
  35.    ], 
  36.    [ 
  37.     '<$1$2</$1>'
  38.     '$1$2$3'
  39.     '$1$2$3'
  40.     '$1$2$3$4$5'
  41.     '$1$2$3$4$5$6$7'
  42.     '$1$2$3'
  43.     '<$1$2'
  44.     '$1 '
  45.     '$1'
  46.     ""
  47.    ], 
  48.    $input); 
  49.  } 
  50.  public static function css($input
  51.  { 
  52.   if (trim($input) === "") { 
  53.    return $input
  54.   } 
  55.   return preg_replace( 
  56.    [ 
  57.     // Remove comment(s) 
  58.     '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s'
  59.     // Remove unused white-space(s) 
  60.     '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~+]|\s*+-(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si'
  61.     // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` 
  62.     '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si'
  63.     // Replace `:0 0 0 0` with `:0` 
  64.     '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i'
  65.     // Replace `background-position:0` with `background-position:0 0` 
  66.     '#(background-position):0(?=[;\}])#si'
  67.     // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space 
  68.     '#(?<=[\s:,\-])0+\.(\d+)#s'
  69.     // Minify string value 
  70.     '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si'
  71.     '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si'
  72.     // Minify HEX color code 
  73.     '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i'
  74.     // Replace `(border|outline):none` with `(border|outline):0` 
  75.     '#(?<=[\{;])(border|outline):none(?=[;\}\!])#'
  76.     // Remove empty selector(s) 
  77.     '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
  78.    ], 
  79.    [ 
  80.     '$1'
  81.     '$1$2$3$4$5$6$7'
  82.     '$1'
  83.     ':0'
  84.     '$1:0 0'
  85.     '.$1'
  86.     '$1$3'
  87.     '$1$2$4$5'
  88.     '$1$2$3'
  89.     '$1:0'
  90.     '$1$2'
  91.    ], 
  92.    $input); 
  93.  } 
  94.  public static function js($input
  95.  { 
  96.   if (trim($input) === "") { 
  97.    return $input
  98.   } 
  99.   return preg_replace( 
  100.    [ 
  101.     // Remove comment(s) 
  102.     '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#'
  103.     // Remove white-space(s) outside the string and regex 
  104.     '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s'
  105.     // Remove the last semicolon 
  106.     '#;+\}#'
  107.     // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` 
  108.     '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i'
  109.     // --ibid. From `foo['bar']` to `foo.bar` 
  110.     '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
  111.    ], 
  112.    [ 
  113.     '$1'
  114.     '$1$2'
  115.     '}'
  116.     '$1$3'
  117.     '$1.$3'
  118.    ], 
  119.    $input); 
  120.  } 

第二步 功能配置

修改配置文件文件,这里修改config/web.php

components中加入如下代码

  1. 'htmlMinify' => [ 
  2.  'class' => 'app\components\HtmlMinify'
  3.  'html' => !YII_ENV_DEV, // 这里只开启了html的 
  4. ], 

在bootstrap中加入如下代码

'bootstrap' => ['log', 'htmlMinify'], // log是默认加的, htmlMinify是我们自己加的

到这里就结束了配置可以试着在生产环境试下

Tags: Yii2压缩 PHP模板输出

分享到: