metadata - php get meta data of file last time file was modified
one text
Solution:
Stream metadata is not the same as the file metadata, since not all streams are connected to files.
Use to get the metadata of the file.
$meta = fstat($file);
echo date('Y-m-d H:i:s', $meta['mtime']);
Source