...
Description | Compresses the string or byte array into GZip format. |
---|---|
Syntax |
Where $content is a string or binary data. |
Example | Expression: GZip.compress($content) Result: Returns $content as a GZipped byte array. |
...
Description | Decompresses a GZipped string or byte array. |
---|---|
Syntax |
Where $content is a string or binary data. |
Example | Expression: GZip.decompress($content) Result: Returns $content as an unzipped byte array. |
...