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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use filemtime function to get the last modified date/time and use that to see how old the file is.