Skip to content

Instantly share code, notes, and snippets.

@slav123
Last active August 29, 2015 14:26
Show Gist options
  • Save slav123/d65e7f6e0cf8560cb07e to your computer and use it in GitHub Desktop.
Save slav123/d65e7f6e0cf8560cb07e to your computer and use it in GitHub Desktop.
Compress JS output with codeigniter output library
<?php
$this->output->set_header('Content-Encoding: gzip')
->set_header('Vary: Accept-Encoding')
->set_content_type('application/json')
->set_output(gzencode(json_encode($data), 9));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment