mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 10:18:39 +00:00
All these files need further edits + other optimization files + moving of files
70 lines
1.6 KiB
PHP
70 lines
1.6 KiB
PHP
<?php
|
|
|
|
class LZW implements CompressionInterface
|
|
{
|
|
public static function compress($unc) {
|
|
$i;$c;$wc;
|
|
$w = "";
|
|
$dictionary = [];
|
|
$result = [];
|
|
$dictSize = 256;
|
|
|
|
for ($i = 0; $i < 256; $i += 1) {
|
|
$dictionary[chr($i)] = $i;
|
|
}
|
|
|
|
for ($i = 0; $i < strlen($unc); $i++) {
|
|
$c = $unc[$i];
|
|
$wc = $w.$c;
|
|
|
|
if (array_key_exists($w. $c, $dictionary)) {
|
|
$w = $w . $c;
|
|
} else {
|
|
array_push($result, $dictionary[$w]);
|
|
$dictionary[$wc] = $dictSize++;
|
|
$w = (string) $c;
|
|
}
|
|
}
|
|
|
|
if ($w !== "") {
|
|
array_push($result,$dictionary[$w]);
|
|
}
|
|
|
|
return implode(",",$result);
|
|
}
|
|
|
|
public static function decompress($com) {
|
|
$com = explode(",",$com);
|
|
$i;$w;$k;$result;
|
|
$dictionary = [];
|
|
$entry = "";
|
|
$dictSize = 256;
|
|
|
|
for ($i = 0; $i < 256; $i++) {
|
|
$dictionary[$i] = chr($i);
|
|
}
|
|
|
|
$w = chr($com[0]);
|
|
$result = $w;
|
|
|
|
for ($i = 1; $i < count($com);$i++) {
|
|
$k = $com[$i];
|
|
|
|
if ($dictionary[$k]) {
|
|
$entry = $dictionary[$k];
|
|
} else {
|
|
if ($k === $dictSize) {
|
|
$entry = $w.$w[0];
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
$result .= $entry;
|
|
$dictionary[$dictSize++] = $w + $entry[0];
|
|
$w = $entry;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
} |