update : 2015.11.03
php.shukuma.com

검색:
 
 
Return the current DirectoryIterator item.

DirectoryIterator::current

(PHP 5)

DirectoryIterator::currentReturn the current DirectoryIterator item.

설명

public DirectoryIterator DirectoryIterator::current ( void )

Get the current DirectoryIterator item.

인수

이 함수는 인수가 없습니다.

반환값

The current DirectoryIterator item.

예제

Example #1 A DirectoryIterator::current() example

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

<?php
$iterator 
= new DirectoryIterator(__DIR__);
while(
$iterator->valid()) {
    
$file $iterator->current();
    echo 
$iterator->key() . " => " $file->getFilename() . "\n";
    
$iterator->next();
}
?>

위 예제의 출력 예시:

0 => .
1 => ..
2 => apple.jpg
3 => banana.jpg
4 => index.php
5 => pear.jpg

참고