如何更改filemtime文件目录删除?
How to change filemtime files directory delete?
我有以下代码。
$days = 7;
// Check if the file is older than X days old
if (filemtime($path.$file) < ( time() - ( $days * 24 * 60 * 60 ) ) )
{
// Do the deletion
unlink($path.$file);
}
我想将 $days
更改为 $minute
,我该如何更改它?
$minute = 1440 * $days;
// there are 1440 minutes in a day
我不知道这是否是您要问的……但它似乎很合适。
如果您想检查文件是否早于 x
分钟,可能适用以下代码。
$minutes = 15;
// Check if the file is older than x minutes
if (filemtime($path.$file) < ( time() - ( $minutes * 60 ) ) ) {
// Do the deletion
unlink($path.$file);
}
我有以下代码。
$days = 7;
// Check if the file is older than X days old
if (filemtime($path.$file) < ( time() - ( $days * 24 * 60 * 60 ) ) )
{
// Do the deletion
unlink($path.$file);
}
我想将 $days
更改为 $minute
,我该如何更改它?
$minute = 1440 * $days;
// there are 1440 minutes in a day
我不知道这是否是您要问的……但它似乎很合适。
如果您想检查文件是否早于 x
分钟,可能适用以下代码。
$minutes = 15;
// Check if the file is older than x minutes
if (filemtime($path.$file) < ( time() - ( $minutes * 60 ) ) ) {
// Do the deletion
unlink($path.$file);
}