thinkphp中開啓gzip壓縮

開啓gzip壓縮只要在index.php里加入以下代碼:
define ( "GZIP_ENABLE", function_exists ( 'ob_gzhandler' ) );
ob_start ( GZIP_ENABLE ? 'ob_gzhandler' : null );
但開啓gzip後會產生相似於關閉調試模式的效果,錯誤報告會被屏蔽,而顯示編碼錯誤,因此要項目上線後再開啓。php

相關文章
相關標籤/搜索