Table Of Contents

m

全干工程师

php如何最小化页面html输出

CSS and Javascript

minify类库来缩小Javascript / CSS文件

HTML

我们可以启用gzip来压缩

使用以下代码片段,使用帮助ob_start的缓冲区从HTML中删除空格:

function 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(
        '>',
        '<',
        '\\1',
        ''
    );

    $buffer = preg_replace($search, $replace, $buffer);

    return $buffer;
}

ob_start("sanitize_output");

相关程序解答推荐

留言