本站提供最佳锁定筹码指标公式源码服务,欢迎转载和分享。

【天门系统源码】【福音短视频源码】【小苹果影视源码】php输出html源码_php输出html源代码

2025-01-19 10:54:07 来源:码指标源码 分类:探索

1.如何用php压缩html代码并输出

php输出html源码_php输出html源代码

如何用php压缩html代码并输出

       å¦‚何用php压缩html代码并输出

       function compressHtml($string) { $matches = array(); preg_match_all('/(<(?输输出天门系统源码:pre|code)>.+?<\/(?:pre|code)>)+/is', $string, $matches); foreach ((array)$matches[1] as $k => $v) { $string = str_replace($v, "#{ $k}#", $string); } $string = str_replace("\r\n", '', $string); //清除换行符 $string = str_replace("\n", '', $string); //清除换行符 $string = str_replace("\t", '', $string); //清除制表符 $pattern = array ("/> *([^ ]*) *</", "/[\s]+/", "/<!--[^!]*-->/", "/\" /", "/ \"/", "'/\*[^*]*\*/'"); $replace = array (">\\1<", " ", "", "\"", "\"", ""); $string = preg_replace($pattern, $replace, $string); foreach ((array)$matches[1] as $k => $v) { $string = str_replace("#{ $k}#", $v, $string); } return $string; } 思路就是提前替换出 pre, code 的块内容. 在处理完之后, 再替换回来. ps . 其实那个压缩函数没多大用途. nginx 直接开 gzip 压缩就好了. 效率和性能比用php做要高.

【本文网址:http://j5.net.cn/news/94a909690809.html 欢迎转载】

copyright © 2016 powered by 皮皮网   sitemap