Файл: F12/f.php
Строк: 71
<?php
include ("code.php");
if ($d[0] == '.' or $d[0] == '/') exit ("Не верный каталог".$px);
if (!is_file ($path.$d)) exit ("Не верный каталог (err:2)".$px);
$filename = pathinfo($d);
$ext = $filename[extension];
$dir = $filename[dirname];
$filename = $filename[basename];
if($html) echo"<div class='orange'>";
echo "<img src='img/help.gif' alt='wait..'/><u>Информация о файле $filename</u>";
if($html) echo "</div><div class='pnk'>";
else
echo "<br/>";
echo "Размер: <b>".round(filesize($path.$d)/1024)."kb</b><br/>
Добавлен: ".date("d.m.Y - H:i",filemtime($path.$d))."";
if($html) echo "</div>"; else echo "<br/>";
list($onedir) = explode("/",$dir,2);
// ----------------------- Картинки
$image = '';
if ($ext == 'gif' or $ext == 'jpg' or $ext == 'jpeg') $image = 1;
if ($image == 1)
{
$arr = array ("128x128","120x160","132x176","176x220","176х144","240x320");
if($html) echo "<div class='menu'>";
echo "Особый размер:<br/>";
foreach($arr as $v)
{
list ($H,$W) = explode ("x",$v);
echo"<a href='im.php?pic=$path$d&H=$W&W=$H'>$v</a><br/>";
}
if($html) echo "</div>"; else echo "<br/>";
}
if(in_array($onedir,$screen_path))
{
if($html) echo "<div class='white'>";
if(!is_file($spath.$filename.".gif"))
echo "[Нет скриншота]";
else
echo "<img src='".$spath."".$filename.".gif' alt='screen'/>";
if($html) echo"</div>"; else echo "<br/>";
}
if($html) echo"<div class='menu'>";
echo "<img src='img/about.gif' alt='wait..'/><u>Описание:</u><br/>";
if (!$about = file_get_contents($opath.$filename.".txt")) $about = "[нет описания]";
echo "$about";
if($html) echo"</div><div class='menu'>"; else echo "<br/>";
if((strtoupper($ext)=="3GP")or(strtoupper($ext)=="MP3")or(strtoupper($ext)=="AMR")or(strtoupper($ext)=="WAV")) {
include_once('getid3/getid3.php');
$getID3 = new getID3;
$fileinfo = $getID3->analyze($path.$d);
getid3_lib::CopyTagsToComments($fileinfo);
if($fileinfo['playtime_seconds']>60)
{
$min=$fileinfo['playtime_seconds']/60;
$min=floor($min);
$sec=($min*60);
$sec=$fileinfo['playtime_seconds']-$sec;
$sec=floor($sec);
}
else {
$min="0";
$sec=floor($fileinfo['playtime_seconds']);
}
echo 'Длительность: '.$min.' м '.$sec.' c<br/>';
}
if(strtoupper($ext)=="3GP") {
include_once('getid3/getid3.php');
$getID3 = new getID3;
$fileinfo = $getID3->analyze($path.$d);
getid3_lib::CopyTagsToComments($fileinfo);
echo 'Разрешение: '.$fileinfo['video']['resolution_x'].' x '.$fileinfo['video']['resolution_y'].'<br/>';
}
if((strtoupper($ext)=="MP3")or(strtoupper($ext)=="AMR")or(strtoupper($ext)=="WAV")) {
include_once('getid3/getid3.php');
$getID3 = new getID3;
$fileinfo = $getID3->analyze($path.$d);
getid3_lib::CopyTagsToComments($fileinfo);
$fileinfo['bitrate']=$fileinfo['bitrate']/1000;
echo 'Качество звука: '.$fileinfo['bitrate'].' кбит/сек<br/>';
}
echo "<img src='img/load.gif' alt='wait..'/><a href='".$path.$d."'>Скачать</a>,(".strtoupper($ext).")";
if($html) echo"</div>";
exit ($px);
?>