How to get modified time and size of any file using PHP?
+3
A:
From php.net http://us.php.net/manual/en/function.stat.php
stat
(PHP 4, PHP 5)
stat — Gives information about a file
Tom Dignan
2010-05-05 11:17:28
I Like This......Thanks MAte!!
OM The Eternity
2010-05-05 11:32:04
+3
A:
SplFileInfo provides a high level API to the file system:
$file = new SplFileInfo('path/to/file');
echo $file->getMTime();
echo $file->getSize();
Gordon
2010-05-05 11:18:27
A:
you can use this
echo date("m/d/Y",filemtime("latestime.php"));
Praveen kalal
2010-05-05 12:02:46