[eluser]CroNiX[/eluser]
Not that I know of. You'd probably have to do that manually. I'd also use filemtime() (last modified time) instead of the create date.
Code:
$i = array_diff(scandir($folder), array('..', '.'));
loop through those images, creating a new array like:
Code:
$images = array();
foreach($i as $img)
{
//$images[modified_time] = image
$images[filemtime(path/to/$img)] = $img;
}
Now just sort the $images array and they should be in order of the last file modification timestamp, Ascending. Reverse sort that to get descending.