Skip to content

Instantly share code, notes, and snippets.

@luizfonseca
Created January 8, 2011 13:30
Show Gist options
  • Save luizfonseca/770836 to your computer and use it in GitHub Desktop.
Save luizfonseca/770836 to your computer and use it in GitHub Desktop.
turnin on the gzip compression. Very useful when using a controller for your application (you only need to include once)
<?php
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment