File size: 685B
<?php
echo"<tr>";
echo"<td class=\"row2\">";
echo"<span class='bool'><small>©</span> by Swen</small><br>";
$Contents = ob_get_contents();
$gzib_file = strlen($Contents);
$gzib_file_out = strlen(gzcompress($Contents,9));
$gzib_pro=round(100-(100/($gzib_file/$gzib_file_out)),1);
echo"<span class='bool'>";
echo '<small>';
echo '[Cжатие: '.$gzib_pro.'%]<br>';
$end_time = microtime();
$end_array = explode(" ",$end_time); $end_time =$end_array[1 ] + $end_array[0];
$time = $end_time - $start_time;
echo '[';
printf("%f",$time);
echo ']</small>';
echo"</span>";
echo"</td>";
echo"</tr>";
echo"</table>";
echo"</form>";
echo"</body></html>";
?>