博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Yii 2.x html 代码压缩
阅读量:4972 次
发布时间:2019-06-12

本文共 593 字,大约阅读时间需要 1 分钟。

 

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; } }}

 

转载于:https://www.cnblogs.com/xiaoyaogege/p/6323216.html

你可能感兴趣的文章
Android 系统framework 概述【转载】
查看>>
Spring之JDBC
查看>>
A Simple make file tutorial
查看>>
python之PIL安装问题
查看>>
Python排序算法之冒泡排序
查看>>
hdu.3308 LCIS(线段树,区间合并+单点更新)
查看>>
LINUX 查看硬件配置命令
查看>>
图解git
查看>>
iOS APP网络分析之rvictl(可以捕捉除了Wifi以外的网络类型)
查看>>
传奇版本中利用NPC迅速给人物加血脚本制作
查看>>
ajax 实现修改功能
查看>>
Android drawable微技巧,你所不知道的drawable的那些细节
查看>>
两栏自适应布局延展到多栏自适应布局
查看>>
[Codeforces Round #162 (Div. 2)]C. Escape from Stones
查看>>
(最小路径覆盖) poj 2446
查看>>
Snapde和Excel、PowerPivot、WPS打开超大CSV文件性能比较
查看>>
MapReduce:超大机群上的简单数据处理
查看>>
深度图像特征在推荐和广告中的应用(一)
查看>>
环境搭建及创建对象方式及赋值(注入)
查看>>
【面向对象设计与构造】第四次博客作业
查看>>