如果文件早于当前日期(今天)
,我该如何删除文件step 1 : Check file last modification date
step 2 : If file date older than Today Date than Delete file
step 3 : Else do nothing
注意:我不想删除超过24小时的文件(我只想删除早于当前日期的文件)
答案 0 :(得分:6)
作为纯PHP答案,您需要以下内容:
function deleteOldFile($file) {
$mdate = date("Ymd", filemtime($file));
$date = date("Ymd");
if ($mdate < $date) {
unlink($file);
}
}