--TEST--
gzdecode
--FILE--
<?php
$orig =
"ORIGINAL_TEXT.................................................................................................................................................................................................................................End";
$gz = gzencode($orig);
echo "strlen(\$orig) == ".strlen($orig)."\n";
echo "strlen(\$gz) == ".strlen($gz)."\n...\n";
$text = gzdecode($gz);
echo "gzdecode(\$gz) = \"$text\"\n\n";
?>
--EXPECT--
strlen($orig) == 241
strlen($gz) == 39
...
gzdecode($gz) = "ORIGINAL_TEXT.................................................................................................................................................................................................................................End"