Файл: iwup.biz/foot.php
Строк: 29
<?php
echo '<div class="ft"><center><b><a href="?">© iWup.Biz - 2013</a></b></center></div><div class="count"><a href="http://waplog.net/c.shtml?530582"><img src="http://c.waplog.net/530582.cnt" align="right" alt="waplog" /></a></div>';
$Contents = ob_get_contents();
$gzib_file = strlen($Contents);
if ($support_deflate)
{
$gzib_file_out = strlen(gzdeflate($Contents,9));
}
else
{
if($support_gzip)
{
$gzib_file_out = strlen(gzencode($Contents,9));
}
else
{
if($support_x_gzip){
$gzib_file_out = strlen(gzcompress($Contents,9));
}
else
{
$gzib_file_out = strlen($Contents);
}
}
}
$gzib_pro=round(100-(100/($gzib_file/$gzib_file_out)),1);
if($gzib_pro > 0 && $gzib_pro < 100){
echo '<!--Cжатие: '.$gzib_pro.'% -->';}
echo '</div></body></html>';
echo '<!--'.(microtime(1)-$mt).'-->';
?>