rab Posted May 10, 2006 Share Posted May 10, 2006 [code]<?$y = 0;if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file !=".." && $file != "_private" && $file != "_vti_bin" && $file != "_vti_cnf" && $file != "_vti_pvt" && $file != "_vti_txt" && $file != "_vti_log" && $file != "cgi-bin" && $file != ".ftpquota" && $file != ".htaccess" && $file != "sniffer") { $lastmod = date('[d-m-y//g-i-s-a]' , filemtime($file)); $z[$y] = $lastmod; $q[$y] = $file; $y++; } } closedir($handle); } sort($z);$size = (sizeof($z) - 1);echo $z[$size];echo $q[$size];?> [/code]This works to an extent, i can sort the date, but i can't sort the file accordingly to the date. Is there anyway to do this? Link to comment https://forums.phpfreaks.com/topic/9504-newest-file-script-help/ Share on other sites More sharing options...
rab Posted May 13, 2006 Author Share Posted May 13, 2006 Doesn't Anyone know this? Link to comment https://forums.phpfreaks.com/topic/9504-newest-file-script-help/#findComment-35341 Share on other sites More sharing options...
Zubaz Posted May 13, 2006 Share Posted May 13, 2006 You need to output your date string in a manner that will sort numerically.06042006 for June 4th 2006 won't sort like you want it to.20060604 will sort correctly, because the heirarchy is in the same direction.06042006 > 03042008 (wrong)20060604 < 20080304 (right!)After that just do something like assign to an array with the date as the key and then do a ksort.[code](inside your while loop)$filesArray[$date] = $filename;(end while loop)ksort($filesArray);echo '<pre>';print_r($filesArray);echo '</pre>[/code][a href=\"http://www.php.net/ksort\" target=\"_blank\"]ksort() on php.net[/a] Link to comment https://forums.phpfreaks.com/topic/9504-newest-file-script-help/#findComment-35344 Share on other sites More sharing options...
rab Posted May 13, 2006 Author Share Posted May 13, 2006 OMG I forgot about keys in arrays! Thanks!<3 Link to comment https://forums.phpfreaks.com/topic/9504-newest-file-script-help/#findComment-35350 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.