faqts : Computers : Programming : Languages : PHP : Common Problems : Files : Tips and Tricks : File Handling

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

5 of 5 people (100%) answered Yes
Recently 5 of 5 people (100%) answered Yes

Entry

How can I list the files in a directory & order them by date uploaded in PHP?(with the newest first)

Sep 29th, 2004 13:20
Gabriele F, Gav B,


<?php
$dir = '/tmp';
$dirh = opendir($dir);
$files = array();
while( FALSE !== ($file = readdir($dirh)) ) {
  $files[$file] = filemtime($dir.'/'.$file);
}
arsort($files);
foreach($files as $file => $mtime) {
  echo "$file\n";
}
?>