Posted by Tim Van Wassenhove on 04/15/07 12:27
MZ schreef:
> Unfortunately images are not sorted by filename and I don`t know why.
From: http://www.php.net/readdir
Returns the filename of the next file from the directory. The filenames
are returned in the order in which they are stored by the filesystem.
So you still have to add code that sorts the filenames by name..
eg:
$filenames = array();
while ($filename = readdir($dir)) {
$filenames[] = $filename;
}
sort($filenames);
foreach($filename in $filenames) {
echo $filename . '<br/>';
}
--
Tim Van Wassenhove <url:http://www.timvw.be/>
Navigation:
[Reply to this message]
|