I want to be able to delete all files in a directory that older than seven days old using only PHP. How can I do this? The server is using Debian Linux.
I want to be able to delete all files in a directory that older than seven days old using only PHP. How can I do this? The server is using Debian Linux.
2
Answers
The 604800 is how many seconds are in a week.
If you have more than one directory, you would have to do this for each directory.
A simple PHP function to delete files older than a given age. Very handy to rotate backup or log files, for example…
}