php

位置:IT落伍者 >> php >> 浏览文章

PHP压缩html网页代码


发布日期:2018年09月17日
 
PHP压缩html网页代码

PHP压缩html网页代码 (清除空格换行符制表符注释标记)
有个不错的方法就是压缩HTML压缩html 其实就是清除换行符清除制表符去掉注释标记 它所起到的作用不可小视
现提供PHP 压缩HTML函数请大家不妨试试看感觉还不错吧

不废话了直接上代码
复制代码代码如下:
<?php
/**
* 压缩html : 清除换行符清除制表符去掉注释标记
* @param $string
* @return 压缩后的$string
* */
function compress_html($string) {
$string = str_replace("rn" $string); //清除换行符
$string = str_replace("n" $string); //清除换行符
$string = str_replace("t" $string); //清除制表符
$pattern = array (
"/> *([^ ]*) *</" //去掉注释标记
"/[s]+/"
"/<![^!]*>/"
"/" /"
"/ "/"
"/*[^*]**/"
);
$replace = array (
"><"
" "
""
"""
"""
""
);
return preg_replace($pattern $replace $string);
}
?>

               

上一篇:编程小技巧 PHP获文件扩展名的三种方法

下一篇:国外十大最流行的PHP框架排名