对PHP一无所知,但我有这个脚本读取文件夹并显示缩略图库,问题是它按字母顺序显示。已经在网上搜索过并看到了这种情况,但不知道从哪里开始任何帮助都会非常感激。
继承剧本
$sitename = $row_wigsites['id'];
$directory = 'sites/'.$sitename.'/pans';
$allowed_types=array('jpg','jpeg','gif','png');
$file_parts=array();
$ext='';
$title='';
$i=0;
$dir_handle = @opendir($directory) or die("There is an error with your image directory!");
while ($file = readdir($dir_handle))
{
if($file=='.' || $file == '..') continue;
$file_parts = explode('.',$file);
$ext = strtolower(array_pop($file_parts));
$title = implode('.',$file_parts);
$title = htmlspecialchars($title);
$nomargin='';
if(in_array($ext,$allowed_types))
{
if(($i+1)%4==0) $nomargin='nomargin';
echo '
<div class="pic '.$nomargin.'" style="background:url('.$directory.'/'.$file.') no-repeat 50% 50%;">
<a href="'.$directory.'/'.$file.'" title="Panoramic Stills taken at '.$title.'°" rel="pan1" target="_blank">'.$title.'</a>
</div>';
$i++;
}
}
closedir($dir_handle);
答案 0 :(得分:1)
尝试使用glob代替opendir,例如:
$i=0;
foreach (glob($directory.'/*.{jpg,jpeg,png,gif}', GLOB_BRACE) as $file){
if($file=='.' || $file == '..') continue;
$file_parts = explode('.',$file);
$ext = strtolower(array_pop($file_parts));
$title = basename($file);
$title = htmlspecialchars($title);
$nomargin='';
if(($i+1)%4==0) $nomargin='nomargin';
echo '
<div class="pic '.$nomargin.'" style="background:url('.$file.') no-repeat 50% 50%;">
<a href="'.$file.'" title="Panoramic Stills taken at '.$title.'°" rel="pan1" target="_blank">'.$title.'</a>
</div>';
$i++;
}
Glob应该返回已排序的文件列表。
编辑:感谢Doug Neiner的提示;)
答案 1 :(得分:0)
添加下面给出的排序行
$file_parts = explode('.',$file);
sort($file_parts) or die("sorting failed");
$ext = strtolower(array_pop($file_parts));
答案 2 :(得分:0)
最简单的方法是将文件中的值放入数组中,然后在将数组输出到页面之前对其进行排序。
答案 3 :(得分:0)
@Habicht代码工作正常,但由于删除了缩略图目录引用,正确的缩略图不再起作用了:
所以我试过这样:
$i=0;
foreach (glob($directory.'/*.{jpg,jpeg,png,gif}', GLOB_BRACE) as $file)
{
foreach (glob($thumbs_directory.'/*.{jpg,jpeg,png,gif}', GLOB_BRACE) as $file2)
{
if($file=='.' || $file == '..') continue;
$file_parts = explode('.',$file);
$ext = strtolower(array_pop($file_parts));
$title = basename($file);
$title = htmlspecialchars($title);
$title = str_replace("_"," ",$title);
$nomargin='';
if(($i+1)%4==0) $nomargin='nomargin';
echo '<div class="pic '.$nomargin.'" style="background:url('.$file2.') no-repeat 50% 50%;">
<a href="'.$file.'" title="'.$title.'" target="_blank">'.$title.'</a>
</div>';
$i++;
}
}
缩略图工作正常,但任何缩略图($目录中的第一个图像文件)的参考图像始终相同。我确信还有其他一些方法可以将这些foreach语句结合起来同时修复所有语句。