Файл: tfoot.php
Строк: 27
<?
$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);
echo '<div class = "copy"><center>
<script type="text/javascript" src="http://mobtop.ru/c/82669.js"></script><noscript><a href="http://mobtop.ru/in/82669"><img src="http://mobtop.ru/82669.gif" alt="MobTop.Ru - рейтинг мобильных сайтов"/></a></noscript>
</div></div></center>';
echo '</body></html>';
?>