DirectoryIterator::getType

(PHP 5, PHP 7)

DirectoryIterator::getTypeDetermine the type of the current DirectoryIterator item

Descrierea

public DirectoryIterator::getType ( void ) : string

Determines which file type the current DirectoryIterator item belongs to. One of file, link, or dir.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns a string representing the type of the file. May be one of file, link, or dir.

Exemple

Example #1 DirectoryIterator::getType() example

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$iterator as $fileinfo) {
    echo 
$fileinfo->getFilename() . " " $fileinfo->getType() . "\n";
}
?>

Exemplul de mai sus va afișa ceva similar cu:

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

A se vedea și