PHP压缩html网页代码(清除空格,换行符,制表符,注释标记)_PHP教程

php教程评论699 views阅读模式

PHP压缩html网页代码 (清除空格,换行符,制表符,注释标记)。

有个不错的方法就是压缩HTML,压缩html 其实就是:清除换行符,清除制表符,去掉注释标记 。它所起到的作用不可小视。

现提供PHP 压缩HTML函数。请大家不妨试试看,感觉还不错吧。

不废话了,直接上代码:


复制代码 代码如下:

/**

* 压缩html : 清除换行符,清除制表符,去掉注释标记

* @param $string

* @return 压缩后的$string

* */

function compress_html($string) {

$string = str_replace("\r\n", '', $string); //清除换行符

$string = str_replace("\n", '', $string); //清除换行符

$string = str_replace("\t", '', $string); //清除制表符

$pattern = array (

"/> *([^ ]*) * "/[\s]+/",

"/ /",

"/\" /",

"/ \"/",

"'/\*[^*]*\*/'"

);

$replace = array (

">\\1<",

" ",

"",

"\"",

"\"",

""

);

return preg_replace($pattern, $replace, $string);

}

?>

企鹅博客
  • 本文由 发表于 2020年7月28日 09:16:01
  • 转载请务必保留本文链接:https://www.qieseo.com/310877.html

发表评论