Any way to determine file age of an image in a folder using PHP?
I want to delete older files than 2 hours, is this possible without adding timestamp-names to their filenames on upload to the folder?
If so, please give me an example!
thanks
|
Any way to determine file age of an image in a folder using PHP? I want to delete older files than 2 hours, is this possible without adding timestamp-names to their filenames on upload to the folder? If so, please give me an example! thanks |
|||
|
|
|
You can use filemtime function to get the last modified date/time and use that to see how old the file is. |
|||
|
|
|
You are looking for the filmetime function
|
|||
|
|
|
|||
|
|
|
I'd check out the |
|||
|
|
|
You can use date/time of last file modification: |
|||
|
|
|
Try with
|
||||
|
|
|
I digged a bit on the web and Stackoverflow (PHP How to find the time elapsed since a date time?) and here is my solution: It's a full answer giving a human readable representation of file age + a check to see if the file is 2 hours old or not.
Here is the output on my side:
|
|||
|
|