(PHP 5, PHP 7)
DirectoryIterator::getSize — Get size of current DirectoryIterator item
Get the file size for the current DirectoryIterator item.
Diese Funktion hat keine Parameter.
Returns the size of the file, in bytes.
Beispiel #1 DirectoryIterator::getSize() example
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
if ($fileinfo->isFile()) {
echo $fileinfo->getFilename() . " " . $fileinfo->getSize() . "\n";
}
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
apple.jpg 15385 banana.jpg 15190 example.php 170 pear.jpg 34406