(PHP 5)
DirectoryIterator::getType — Determine the type of the current DirectoryIterator item
Determines which file type the current DirectoryIterator item belongs to. One of file, link, or dir.
Questa funzione non contiene parametri.
Returns a string representing the type of the file. May be one of file, link, or dir.
Example #1 DirectoryIterator::getType() example
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
echo $fileinfo->getFilename() . " " . $fileinfo->getType() . "\n";
}
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
. dir .. dir apple.jpg file banana.jpg file example.php file pear.jpg file