国产精品自拍视频_能直接看的一级欧美毛片_美女福利视频在线观看免费视频_草莓视频成人在线观看

thinkphp開啟GZIP壓縮

時(shí)間:2014-06-22 來(lái)源:天津文率科技有限公司
網(wǎng)頁(yè)啟用GZIP壓縮,或多或少有助于提高網(wǎng)站性能。

那么,thinkphp怎么啟用GZIP壓縮呢?

有的人說(shuō)在公共的 Action 里重寫 display 函數(shù)即可(注意:這種方法其實(shí)是比較笨的)

protected  function display($templateFile='',$charset='',$contentType='text/html'){
    if (extension_loaded('zlib') && strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {

        ini_set('zlib.output_compression', 'On');

        ini_set('zlib.output_compression_level',3);

        ob_start('ob_gzhandler');

        parent::display($templateFile,$charset,$contentType);

        ob_end_flush();

    }else {

         parent::display($templateFile,$charset,$contentType);

    }

}

從上面的代碼來(lái)看,其實(shí)在thinkphp的入口文件加上這兩句就行了,不用那么麻煩

//開啟壓縮
define( "GZIP_ENABLE", function_exists ( 'ob_gzhandler') );
ob_start( GZIP_ENABLE ? 'ob_gzhandler': null );


更多優(yōu)化方面的技術(shù)帖,請(qǐng)關(guān)注天津網(wǎng)站建設(shè) 天津文率科技的官方網(wǎng)站  codepolly.com




聯(lián)絡(luò)方式:

中國(guó) · 天津市河西區(qū)南京路35號(hào)亞太大廈1403室
電話:15620613686
郵編:300220