php 删除目录下N分钟前创建的所有文件的实现代码
程序员文章站
2022-06-29 21:11:58
复制代码 代码如下:
<?php
//delfile("upload",10);
function delfile($dir,$n) //删除当dir路径下n分钟前创建的所有文件;
{
if(is_dir($dir))
{
if($dh=opendir($dir))
{
while (false !== ($file = readdir($dh)))
{
if($file!="." && $file!="..")
{
$fullpath=$dir."/".$file;
if(!is_dir($fullpath))
{
//$filedate=date("y-m-d", filemtime($fullpath));
$filedate=date("y-m-d h:i:s", filemtime($fullpath));
//$d1=strtotime(date("y-m-d"));
$d1=strtotime(date("y-m-d h:i:s"));
$d2=strtotime($filedate);
//$days=round(($d1-$d2)/3600/24);
$days=round(($d1-$d2)/60);
if($days>$n)
unlink($fullpath); ////删除文件
}
}
}
}
closedir($dh);
}
}
?>
复制代码 代码如下:
<?php
//delfile("upload",10);
function delfile($dir,$n) //删除当dir路径下n分钟前创建的所有文件;
{
if(is_dir($dir))
{
if($dh=opendir($dir))
{
while (false !== ($file = readdir($dh)))
{
if($file!="." && $file!="..")
{
$fullpath=$dir."/".$file;
if(!is_dir($fullpath))
{
//$filedate=date("y-m-d", filemtime($fullpath));
$filedate=date("y-m-d h:i:s", filemtime($fullpath));
//$d1=strtotime(date("y-m-d"));
$d1=strtotime(date("y-m-d h:i:s"));
$d2=strtotime($filedate);
//$days=round(($d1-$d2)/3600/24);
$days=round(($d1-$d2)/60);
if($days>$n)
unlink($fullpath); ////删除文件
}
}
}
}
closedir($dh);
}
}
?>