如何缩小php页面的html输出?

如何缩小php页面的html输出?,第1张

如何缩小php页面的html输出? CSS和Javascript

考虑以下链接以最小化Javascript / CSS文件:

HTML

告诉Apache使用GZip交付HTML-这通常将响应大小减少了约70%。(如果使用Apache,则配置gzip的模块取决于您的版本:Apache
1.3使用mod_gzip,而Apache 2.x使用mod_deflate。)

接受编码:gzip,放气

内容编码:gzip

使用以下代码段通过ob_start帮助缓冲区从HTML删除空格:

<?phpfunction sanitize_output($buffer) {    $search = array(        '/>[^S ]+/s',     // strip whitespaces after tags, except space        '/[^S ]+</s',     // strip whitespaces before tags, except space        '/(s)+/s',         // shorten multiple whitespace sequences        '/<!--(.|s)*?-->/' // Remove HTML comments    );    $replace = array(        '>',        '<',        '',        ''    );    $buffer = preg_replace($search, $replace, $buffer);    return $buffer;}ob_start("sanitize_output");?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5566608.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存