• [织梦吧]唯一域名:www.dedecms8.com,织梦DedeCMS学习平台.

当前位置: > 编程与数据库 > php编程 >

php压缩HTML代码

来源: www.dedecms8.com 编辑:织梦吧 时间:2012-02-07点击:
   

  /**

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

  }

标签: php 压缩 html

About D8

  • ©2014 织梦吧(d8) DedeCMS学习交流平台
  • 唯一网址 www.DedeCMS8.com 网站地图
  • 联系我们 1170734538@qq.com ,  QQ