chris
04/13/2018, 2:59 PMccoy
04/13/2018, 3:01 PMchris
04/13/2018, 3:05 PMcompress/flate
<?php
$value_b64 = "from_golang";
$value = base64_decode($value_b64);
$context = inflate_init(ZLIB_ENCODING_RAW);
if (!$context) {
echo "oh no\n";
}
$output = inflate_add($context, $value);
echo $output;
echo "\n";
flate