Skip to content

Instantly share code, notes, and snippets.

@chrismeller
Created September 7, 2012 23:50
Show Gist options
  • Select an option

  • Save chrismeller/3670815 to your computer and use it in GitHub Desktop.

Select an option

Save chrismeller/3670815 to your computer and use it in GitHub Desktop.
Test PHP ZLib Methods for Compressing HTTP Requests
<?php
header('Content-Encoding: deflate' );
echo gzdeflate( 'this is just a test!' );
?>
<?php
header('Content-Encoding: gzip' );
echo gzencode( 'this is just a test!' );
?>
<?php
header('Content-Encoding: deflate' );
echo gzcompress( 'this is just a test!' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment