<?php

$s = gzdeflate('blahblahblah');

echo bin2hex($s), PHP_EOL;

echo $r = gzinflate($s), PHP_EOL;

echo bin2hex($r), PHP_EOL;

