I have to list directories by using scandir() function but result array should be sorted according to date and time of directory created.

Regards Deepak

link|improve this question

74% accept rate
Have a look at this question: stackoverflow.com/questions/1386092/… – rojoca Oct 14 '09 at 8:52
feedback

4 Answers

up vote 1 down vote accepted

you could try backticks

$listOfFiles = `ls -ltr`;

and then use explode to get the into an array format

link|improve this answer
+1 Did not know you could do that! – Jleagle Mar 7 at 14:31
feedback

With scandir() you cannot.

Check this

link|improve this answer
feedback

Get results you need into an array and sort it... I'm not aware of a scandir option that can do this directly.

link|improve this answer
feedback

Problem can be solved by using filemtime($dirPath) function.

code sample:

if (file_exists($dirPath)) {
    echo "last modified: " . date ("F d Y H:i:s.", filemtime($dirPath));
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.