PHP压缩html的函数代码

发布时间:2020-12-22编辑:脚本学堂
分享一例php实现的高效压缩html的函数代码,有需要的朋友参考下吧。

本节内容:
PHP压缩html的函数

要求:
在网页里面的js代码中不要使用//注释,/**/注释会自动剔除。
函数自动剔除标记直接的多余空白,而且会只能判断标记的属性的属性值是否被""包裹之间,如果有就剔除属性和属性值之间的所有空格,如果没有""就保留一个空格,避免破
坏html结构。

例如:
<a href=http://www.jb200.com     style="font-size : 14px;  "> baidu </a>
压缩后:
<a href=http://www.jb200.com style="font-size:14px;">baidu</a>

例如:
<a href="http://www.jb200.com"     style="font-size : 14px;  "> baidu </a>
压缩后:
<a href="http://www.jb200.com"style="font-size:14px;">baidu</a>

php编程实现html内容压缩的函数:
 

复制代码 代码示例:
<?php
//函数名: compress_html
//参数: $string
//返回值: 压缩后的$string
//by www.jb200.com
function compress_html($string) {
    $string = str_replace("rn", '', $string); //清除换行符
    $string = str_replace("n", '', $string); //清除换行符
    $string = str_replace("t", '', $string); //清除制表符
    $pattern = array (
                    "/> *([^ ]*) *</", //去掉注释标记
                    "/[s]+/",
                    "/<!--[wWrn]*?-->/",
                    "/" /",
                    "/ "/",
                    "'/*[^*]**/'"
                    );
    $replace = array (
                    ">1<",
                    " ",
                    "",
                    """,
                    """,
                    ""
                    );
    return preg_replace($pattern, $replace, $string);
}