压缩zend框架2的html输出

时间:2012-07-03 11:25:25

标签: php zend-framework2 output-buffering html-manipulation

我目前正在使用Zend Framework 2 beta for PHP 5.4.4来开发一个用于自学目的的个人webapp。

我想知道是否可以在将html输出发送到浏览器之前拦截html输出,以便通过删除所有不必要的空格来缩小它。

我怎样才能在ZF2中实现这个结果?

2 个答案:

答案 0 :(得分:6)

是的,你可以:

在Modle.php上创建一个将在完成时触发的事件

public function onBootstrap(Event $e)
{
    $app = $e->getTarget();
    $app->getEventManager()->attach('finish', array($this, 'doSomething'), 100);
}


public function doSomething ($e)
{
    $response = $e->getResponse();
    $content = $response->getBody();
    // do stuff here
    $response->setContent($content);

}

答案 1 :(得分:1)

将这两个方法放在任何module.php中。它将gzip并将压缩输出发送到浏览器。

 public function onBootstrap(MvcEvent $e)
{
    $eventManager = $e->getApplication()->getEventManager();
    $eventManager->attach("finish", array($this, "compressOutput"), 100);
}

public function compressOutput($e)
    {
        $response = $e->getResponse();
        $content = $response->getBody();
        $content = preg_replace(array('/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s', '#(?://)?<![CDATA[(.*?)(?://)?]]>#s'), array('>', '<', '\\1', "//&lt;![CDATA[n" . '1' . "n//]]>"), $content);

        if (@strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false) {
            header('Content-Encoding: gzip');
            $content = gzencode($content, 9);
        }

        $response->setContent($content);
    }