当前位置:首页 > PHP教程 > PHP高级教程

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 (
">\1<",
" ",
"",
""",
""",
""
);
return preg_replace($pattern, $replace, $string);
}
?>

【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!