DirectoryIterator::isFile

(PHP 5, PHP 7)

DirectoryIterator::isFileDetermine if current DirectoryIterator item is a regular file

Açıklama

public DirectoryIterator::isFile ( void ) : bool

Determines if the current DirectoryIterator item is a regular file.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Returns TRUE if the file exists and is a regular file (not a link or dir), otherwise FALSE

Örnekler

Örnek 1 DirectoryIterator::isFile() example

This example will list all regular files in the directory containing the script.

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

apple.jpg
banana.jpg
example.php
pears.jpg

Ayrıca Bakınız