PHP如何编写压缩HTML的长尾函数?
- 内容介绍
- 文章标签
- 相关推荐
本文共计75个文字,预计阅读时间需要1分钟。
pythondef compress_(string): string=string.replace('\r\n', '').replace('\n', '').replace('\t', '') pattern=[/, *]
function compress_html($string) { $string = str_replace("\r\n", '', $string); //清除换行符 $string = str_replace("\n", '', $string); //清除换行符 $string = str_replace("\t", '', $string); //清除制表符 $pattern = array ( "/> *([^ ]*) *</", //去掉注释标记 "/[\s]+/", "/<!--[\\w\\W\r\\n]*?-->/", "/\" /", "/ \"/", "'/\*[^*]*\*/'" ); $replace = array ( ">\\1<", " ", "", "\"", "\"", "" ); return preg_replace($pattern, $replace, $string); }
本文共计75个文字,预计阅读时间需要1分钟。
pythondef compress_(string): string=string.replace('\r\n', '').replace('\n', '').replace('\t', '') pattern=[/, *]
function compress_html($string) { $string = str_replace("\r\n", '', $string); //清除换行符 $string = str_replace("\n", '', $string); //清除换行符 $string = str_replace("\t", '', $string); //清除制表符 $pattern = array ( "/> *([^ ]*) *</", //去掉注释标记 "/[\s]+/", "/<!--[\\w\\W\r\\n]*?-->/", "/\" /", "/ \"/", "'/\*[^*]*\*/'" ); $replace = array ( ">\\1<", " ", "", "\"", "\"", "" ); return preg_replace($pattern, $replace, $string); }

