lz4_compress
This function compresses the given string using the lz4lib data format, which is primarily used for compressing and uncompressing memcache values
function lz4_compress(
string $uncompressed,
bool $high = false,
): mixed;
Parameters
string $uncompressed- The uncompressed databool $high = false
Returns
string- - The compressed data, or FALSE on error