How to get modified time and size of any file using PHP?
SplFileInfo provides a high level API to the file system:
$file = new SplFileInfo('path/to/file');
echo $file->getMTime();
echo $file->getSize();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With