DirectoryIterator::isReadable

(PHP 5, PHP 7)

DirectoryIterator::isReadableDetermine if current DirectoryIterator item can be read

Beschreibung

public DirectoryIterator::isReadable ( void ) : bool

Determines if the current DirectoryIterator item is readable.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns TRUE if the file is readable, otherwise FALSE

Beispiele

Beispiel #1 DirectoryIterator::isReadable() example

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch