My favorites | Sign in
Project Home Downloads Issues Source
Project Information
Members
Featured
Downloads
Links

LZW is a simple algorithm efficient mainly in text compression. This library provides simple functions for LZW compression and decompression.

include "./lzw.inc.php";

$data = "";
$compressed = lzw_compress($data);
var_dump($data === lzw_decompress($compressed));
Powered by Google Project Hosting