I have the following codes.
$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);
}
I want to change $days
to $minute
, how do I go about changing it?
If you want to check if the file is older than x
minutes, the following codes might apply.
$minutes = 15;
// Check if the file is older than x minutes
if (filemtime($path.$file) < ( time() - ( $minutes * 60 ) ) ) {
// Do the deletion
unlink($path.$file);
}