I want to sort files in descending order with date to diplay, And using Grep Only
define("SLASH", stristr($_SERVER[SERVER_SOFTWARE], "win") ? "\\" : "/");
function php_grep($path){
$fp = opendir($path);
while($f = readdir($fp)){
if( preg_match("#^\.+$#", $f) ) continue; // ignore symbolic links
$file_full_path = $path.SLASH.$f;
if($file_full_path) {
$ret .= "$file_full_path\n";
}
}
return $ret;
}
echo "<pre>";
print_r(php_grep("/home"));