php脚本删除超过24小时的文件,删除所有文件
2022-08-30 13:30:17
我写了这个php脚本来删除超过24小时的旧文件,但它删除了所有文件,包括较新的文件:
<?php
$path = 'ftmp/';
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ((time()-filectime($path.$file)) < 86400) {
if (preg_match('/\.pdf$/i', $file)) {
unlink($path.$file);
}
}
}
}
?>