Файл: l2ps_v5/files/gzcompress.php
Строк: 65
<?php
##########################################
## Автор: Bopo6eu aka 7up # ## Сайт: http://l2pirates.ru # ## ICQ : 44-67-47-41 # ## Версия Лицензионная #
## Данная версия скрипта является ПЛАТНОЙ, #
## вы НЕ ИМЕЕТЕ ПРАВА распрострянять данный #
## скрипт или какие-либо части его кода... #
#########################################
function miscGzHandler($buf) {
$zipRatio = 5;
$zipDebug = 1;
if(empty($buf) || !function_exists('gzcompress') || !isset($_SERVER['HTTP_ACCEPT_ENCODING'])) return $buf;
$enc_ar = explode(',', $_SERVER['HTTP_ACCEPT_ENCODING']);
$mayZip = false; $encoding = '';
foreach($enc_ar as $enc) {
$enc = trim($enc);
if('gzip' == $enc || 'x-gzip' == $enc) {
$mayZip = true;
$encoding = $enc;
break;
}
}
if(!$mayZip) return $buf;
$bufZiped = gzcompress($buf, $zipRatio);
if($zipDebug) {
$bufLen = strlen($buf);
$bufZipedLen= strlen($bufZiped);
$buf .= (2 == $zipDebug) ? "nn<!"."--n" : "n<br><pre style='width:15%; border:3px ridge; background-color:white; color:gray; font:xx-small Lucida Console, Courier New; padding:3px; margin:10px;'>n";
$buf .= "HTML content : ".$bufLen." bytesn";
$buf .= "Compressed : ".$bufZipedLen." bytesn";
$buf .= "GZip level : ".$zipRatio."n";
$buf .= "Size difference : ".sprintf("%.1f%%", $bufZipedLen*100/$bufLen)."n";
$buf .= "Size ratio : ".sprintf("%.1f", $bufLen/$bufZipedLen)." timesn";
$buf .= (2 == $zipDebug) ? "--".">n" : "</pre>n";
$bufZiped = gzcompress($buf, $zipRatio);
}
$bufZiped = pack('cccccccc',0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00)
.substr($bufZiped, 0, -4)
.pack('V',crc32($buf))
.pack('V',strlen($buf));
header('Content-encoding: '.$encoding);
header('Content-length: '.strlen($bufZiped));
return $bufZiped;
}
ob_start('miscGzHandler');
?>