Время открытия сайта
- Обновлено: 07.03.2011, 17:11
- Жанр: Хаки для Dle
Хак отображает кол-во времени за которое был открыт сайт.!
Установка:
1. Открываем index.php & Находим:
Code
echo $tpl->result['main'];
Заменяем на:
Code
eval (' ?' . '>' . $tpl->result['main'] . '<' . '?php ');
2. Открываем Main.tpl и добавляем этот код в в то место Шаблона где бы вы хотели вывести:
Code
<?php
/*
Page Loader
*/
// Insert at the very top of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$start = $time;
?><?php
// Place at the very bottom of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf ("Site Open In <b>%f</b> Seconds.", $totaltime);
// The above line can be changed but remember to keep %f
?>
/*
Page Loader
*/
// Insert at the very top of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$start = $time;
?><?php
// Place at the very bottom of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf ("Site Open In <b>%f</b> Seconds.", $totaltime);
// The above line can be changed but remember to keep %f
?>
Комментарии