DirectoryIterator::__toString

(PHP 5, PHP 7)

DirectoryIterator::__toStringGet file name as a string

Açıklama

public DirectoryIterator::__toString ( void ) : string

Get the file name of the current DirectoryIterator item.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Returns the file name of the current DirectoryIterator item.

Örnekler

Örnek 1 A DirectoryIterator::__toString() example

This example will list the contents of the directory containing the script.

<?php
$dir 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$dir as $fileinfo) {
    echo 
$fileinfo;
}
?>

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

.
..
apple.jpg
banana.jpg
index.php
pear.jpg

Ayrıca Bakınız