| 1 | <?php |
||
| 7 | class NativeReadDriver implements ISizeDriver |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Returns file size by reading whole files and counting read bites |
||
| 11 | * @link http://stackoverflow.com/questions/5501451/php-x86-how-to-get-filesize-of-2gb-file-without-external-program/5504829#5504829 |
||
| 12 | * @inheritdoc |
||
| 13 | */ |
||
| 14 | public function getFileSize($path) |
||
| 33 | } |