Does anyone know a way to grab the last modified dates of all files within a folder and compare it to a certain date?
So far I have this.
<?php
$lastmoddate = (date("Ymd", filemtime($file)));
$todaysdate = date("Ymd", time());
$result = array();
$folder = ('uploaded_files/');
$handle = opendir($folder);
foreach (glob("$folder/*") as $team){$sort[]= end(explode('/',$team));}
while (false !==($file = readdir($handle)))
{
if ( $file != ".." && $file != "." )
{
$file = "uploaded_files/".$file ;
if (!is_dir($file))
$result[] = $file;
}
}
closedir($handle);
foreach ($result as $file){
if ($lastmoddate > $todaysdate){
if (strpos($file, "+12:00") !==false){
echo "$file".",".date ("h:i d/m/Y", filemtime($file))."\r\n"."<br/>";
}
}
}
?>
This doesn't work as $lastmoddate = gives me the date 1969 12 31.
PHP's filemtime() (which internally basically just calls
stat()
and returns only the m-time value) works on a single file at a time.You've already got a
glob()
call in your script to get a list of filenames. Put the filemtime() call inside that loop to get each file's mtime, and do the comparisons in there.Your code is not working as you've not assigned a value to
$file
at the point you do the initial filemtime() call, so that returns a booleanFALSE
for failure, which gets converted to an integer0
for thedate()
formatting. You're in a timezone that's negative-GMT, so that converts to a date slightly BEFORE Jan 1/1970, which is time 0 in UTC.What you need is: