FilesystemIterator::current

(PHP 5 >= 5.3.0)

FilesystemIterator::currentThe current file

Описание

public mixed FilesystemIterator::current ( void )

Get file information of the current element.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

The filename, file information, or $this depending on the set flags. See the FilesystemIterator constants.

Примеры

Пример #1 FilesystemIterator::current() example

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

<?php
$iterator 
= new FilesystemIterator(dirname(__FILE__), FilesystemIterator::CURRENT_AS_PATHNAME);
foreach (
$iterator as $fileinfo) {
    echo 
$iterator->current() . "\n";
}
?>

Результатом выполнения данного примера будет что-то подобное:

/www/examples/apple.jpg
/www/examples/banana.jpg
/www/examples/example.php

Смотрите также


Участник рейтинга Тэглайн 2010