Файл: ftp/includes/header.php
Строк: 28
<?php
ob_start();
error_reporting(0);
@set_time_limit(1000);
// считываем текущее время
$start_time = microtime();
// разделяем секунды и миллисекунды (становятся значениями начальных ключей массива-списка)
$start_array = explode(" ",$start_time);
// это и есть стартовое время
$start_time = $start_array[1] + $start_array[0];
echo '<?xml version="1.0" encoding="utf-8"?>';
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="Cache-Control" content="no-cache,no-store,must-revalidate"/>
<link rel="shortcut icon" href="icons/favicon.ico" type="image/x-icon"/>
';
echo '
<title>Онлайн FTP</title>
<link rel="stylesheet" href="includes/style.css" type="text/css" /></head>
<body>';
echo '<div class="head_title">
FTP Менеджер</div><div class="content">';
?>