Home >php教程 >php手册 >php压缩HTML代码

php压缩HTML代码

WBOY
WBOYOriginal
2016-06-21 08:52:421140browse

  /**

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

  }



Statement:
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