考虑以下链接以最小化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");?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)