Home > php教程 > php手册 > body text

PHP压缩html网页代码

WBOY
Release: 2016-06-13 11:34:12
Original
1439 people have browsed it

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

不废话了,直接上代码: 
复制代码代码如下:
 

/** 
* 压缩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); 
} 
?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!