// 压缩html 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); }
好用不解释
时间: 2024-10-29 19:06:18