我现在有一个脚本,它非常适合用于我公司资源的 FTP 类型站点。
它显示带有下载链接和文件名的图像。我想要做的是,如果文件不是图像(如 pdf),则显示占位符图像。
下面的代码不正确(if/else 语句),但您可以看到我的意图。
提前致谢。
<?php
// Find all files in that folder
$files = glob('files/*');
//$image =
// Do a natural case insensitive sort, usually 1.jpg and 10.jpg would come next to each other with a regular sort
natcasesort($files);
if ($files = array("gif", "jpeg", "jpg", "png");) {
$images = $file
} else {
$images = "http://hg.exbabylon.net/find_fitter/placeholder.jpg";
}
// Display images
foreach($files as $file) {
echo '<div class="one_half"><img src="' . $images . '" class="images" /></br><h2>' .basename($file). '</h2><a class="download" href="fitter/download.php?file='.base64_encode($file).'"></a></div>';
}
?>