Nasıl zaman ve PHP kullanarak herhangi bir dosyanın boyutunu değiştirdiyseniz almak için?
From php.net http://us.php.net/manual/en/function.istatistik.php
istatistik
(PHP 4, PHP 5)
istatistik — Gives information about a file
SplFileInfo dosya sistemi üst düzey bir API sağlar:
$file = new SplFileInfo('path/to/file');
echo $file->getMTime();
echo $file->getSize();
Sen filemtime ve bunun için filesize işlevlerini kullanabilirsiniz.
More info here strong>