好的,我有这段代码并且运行良好,但我需要图像的顺序在图像创建日期之前,有人可以帮我吗?
$images=array();
$dir = @opendir('.') or die("Unable to open $path");
$i=0;
while($file = readdir($dir)) {
if(is_dir($file))
continue;
else if($file != '.' && $file != '..' && $file != 'index.php') {
$images[$i]=$file;
$i++;
}
}
sort($images);
for($i=0; $i<sizeof($images); $i++) {
echo "<a href=".chr(34).$path.$images[$i].chr(34)."><img style='border:1px solid #666666; width:200px; margin: 10px;' src='".$images[$i]."'/></a>";
}
closedir($dir);