DirectoryIterator::getSize

(PHP 5, PHP 7)
Get size of current DirectoryIterator item
public int DirectoryIterator::getSize ( void )

Get the file size for the current DirectoryIterator item.

Returns:

Returns the size of the file, in bytes.

Examples:
DirectoryIterator::getSize() example
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
    if ($fileinfo->isFile()) {
        echo $fileinfo->getFilename() . " " . $fileinfo->getSize() . "\n";
    }
}
?>

The above example will output something similar to:

apple.jpg 15385
banana.jpg 15190
example.php 170
pear.jpg 34406
See also:

filesize() -

doc_php
2016-02-24 16:19:48
Comments
Leave a Comment

Please login to continue.