(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
1 2 3 4 5 6 7 8 | <?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:
Please login to continue.