PHP Dokumentation: Directoryiterator gettype
12. Januar 2010 von werner
DirectoryIterator::getType
(PHP 5 >= 5.0.2)
DirectoryIterator::getType — Determine the type of the current DirectoryIterator item
Beschreibung
public string DirectoryIterator::getType ( void )
Determines which file type the current DirectoryIterator item belongs to. One of file, link, or dir.
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
Returns a string representing the type of the file. May be one of file, link, or dir.
Beispiele
Beispiel #1 DirectoryIterator::getType() example
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
echo $fileinfo->getFilename() . " " . $fileinfo->getType() . "\n";
}
?>Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie:
. dir.. dirapple.jpg filebanana.jpg fileexample.php filepear.jpg file
Siehe auch
- DirectoryIterator::isDir – Determine if current DirectoryIterator item is a directory
- DirectoryIterator::isDot – Determine if current DirectoryIterator item is ‘.’ or ‘..’
- DirectoryIterator::isFile – Determine if current DirectoryIterator item is a regular file
- DirectoryIterator::isLink – Determine if current DirectoryIterator item is a symbolic link