gzuncompress
gzuncompress
Uncompress a compressed string
**gzuncompress** string $data int $max_length
This function uncompress a compressed string.
data
The data compressed by .
gzcompress
max_lengthThe maximum length of data to decode.
The original uncompressed data or false on error.
The function will return an error if the uncompressed data is more than
32768 times the length of the compressed input
or more than the optional parameter .
data``max_length
Voorbeeld: example
<?php
$compressed = gzcompress('Compress me', 9);
$uncompressed = gzuncompress($compressed);
echo $uncompressed;
?>
gzcompress``gzinflate``gzdeflate``gzencode