Я написал короткий код php, который отображает изображение и заголовок для каждого файла в каталоге. Проблема в том, что если я запускаю код, многие файлы получают изображение вместо изображения. Так, например, файл .zip находится перед файлом .txt. Теперь он будет отображать текстовый файл вместо .zip изображения.
Код:
$file_dir = "upload/demofiles";
if ($handle = opendir($file_dir)) {
$i = 1;
while (false !== ($entry = readdir($handle))) {
$format = pathinfo($entry, PATHINFO_EXTENSION);
$file_path = $file_dir.'/'.$entry;
if($format == "txt"){
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<iframe src="'.$file_path.'" width="80px" style="height:80px" scrolling="no"></iframe>';
}
if($format == "png"){
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<img src="'.$file_path.'" />';
}
if($format == "zip"){
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<img width="64px" class="img" src="icons/zip.png" />';
fclose($myfile);
}
if($format == "pdf"){
$file_element = '<embed src="'.$file_path.'" width="80px" scrolling="no" style="height:80px">';
}
if(!isset($file_element)){
$file_element = '<img class="img" width="64px" src="icons/file.png">';
}
if ($entry != "." && $entry != "..") {
echo '<label style="display:inline-block; border:solid 1px;">
<div>'.$file_element.'</div>
<div>'.$entry.'</div>
</label>';
}
$i++;
}
}
почему это случилось? Я думаю, что переменные должны быть очищены после запуска цикла.
Спасибо!
Попробуйте этот код:
$file_dir = "upload/demofiles";
if ($handle = opendir($file_dir)) {
$i = 1;
while (false !== ($entry = readdir($handle))) {
$format = pathinfo($entry, PATHINFO_EXTENSION);
$file_path = $file_dir.'/'.$entry;
switch($format){
case "txt":
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<iframe src="'.$file_path.'" width="80px" style="height:80px" scrolling="no"></iframe>';
break;
case "png":
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<img src="'.$file_path.'" />';
break;
case "zip":
$myfile = fopen($file_path, "r") or die("Unable to open file!");
$file_element = '<img width="64px" class="img" src="icons/zip.png" />';
fclose($myfile);
break;
case "pdf":
$file_element = '<embed src="'.$file_path.'" width="80px" scrolling="no" style="height:80px">';
break;
default:
$file_element = '<img class="img" width="64px" src="icons/file.png">';
break;
}
if ($entry != "." && $entry != "..") {
echo '<label style="display:inline-block; border:solid 1px;">
<div>'.$file_element.'</div>
<div>'.$entry.'</div>
</label>';
}
$i++;
}
}
Других решений пока нет …