Beauchy Posted June 11, 2006 Share Posted June 11, 2006 Cannot get it to sort according to date...The problem is that I cannot change the file names but they are all in this format:JAREPORT 05-05-06.txtJAREPORT 05-07-06.txtJAREPORT 06-01-06.txtI want to display the files as links in a table according to month in descending order... eg 31, 30, 29, etc...Everything works except the sorting...How can I sort those files?Thanks, Beauchy Link to comment https://forums.phpfreaks.com/topic/11743-sorting-help-please/ Share on other sites More sharing options...
Barand Posted June 12, 2006 Share Posted June 12, 2006 Put them in an array and use a custom sort function. For example, this sorts the middle part of the date in descending order[code]$files = array( 'JAREPORT 05-05-06.txt', 'JAREPORT 05-07-06.txt', 'JAREPORT 06-01-06.txt');usort ($files, 'monthsort');// check resultsecho '<pre>', print_r($files, true), '</pre>';function monthsort($a, $b) { $ma = substr($a, 12, 2); $mb = substr($b, 12, 2); return -strcmp($ma, $mb);} [/code] Link to comment https://forums.phpfreaks.com/topic/11743-sorting-help-please/#findComment-44484 Share on other sites More sharing options...
Beauchy Posted June 12, 2006 Author Share Posted June 12, 2006 Got it working!! [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] Thank you very much! [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] Link to comment https://forums.phpfreaks.com/topic/11743-sorting-help-please/#findComment-44513 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.