PHP Doku:: Determine the type of the current DirectoryIterator item - directoryiterator.gettype.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe DirectoryIterator classDirectoryIterator::getType

Ein Service von Reinhard Neidl - Webprogrammierung.

The DirectoryIterator class

<<DirectoryIterator::getSize

DirectoryIterator::isDir>>

DirectoryIterator::getType

(PHP 5)

DirectoryIterator::getTypeDetermine 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 erzeugt eine ähnliche Ausgabe wie:

. dir
.. dir
apple.jpg file
banana.jpg file
example.php file
pear.jpg file

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
boards at gmail dot com
9.04.2006 18:09
Note that this function returns the file type (e.g. "file", "dir", etc.) and not the MIME type.  To do that, you might want to use this:
<?php
for
(
 
$dir = new DirectoryIterator('/some/directory');
 
$dir->valid();
 
$dir->next()
)
{
 
$mime = mime_content_type($dir->getPathname());
}
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)