Get Date When File Was Created
- Forums
- PHP
- Get Date When File Was Created
i am posting this here so incase anyone wants to know how they can get the date when the file was created or updated, with this script is easy getting the creation time and date of the files you need to obtain [2105], Last Updated: Mon Jun 24, 2024
Padaki52
Thu Oct 07, 2010
0 Comments
669 Visits
i am posting this here so incase anyone wants to know how they can get the date when the file was created or updated.
for example lets say i have a file called webune.php and i wanted to know when it was created.
well, you find out when the file was created by using the filemtime() php functions.
$FileName = 'MyContacts.txt';
echo filemtime($FileName);
thats it