FilesystemIterator::current

(PHP 5 >= 5.3.0, PHP 7)
The current file
public mixed FilesystemIterator::current ( void )

Get file information of the current element.

Returns:

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

Examples:
FilesystemIterator::current() example

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

1
2
3
4
5
6
<?php
$iterator new FilesystemIterator(__DIR__, FilesystemIterator::CURRENT_AS_PATHNAME);
foreach ($iterator as $fileinfo) {
    echo $iterator->current() . "\n";
}
?>

The above example will output something similar to:

/www/examples/apple.jpg
/www/examples/banana.jpg
/www/examples/example.php
See also:

FilesystemIterator constants -

DirectoryIterator::current() -

DirectoryIterator::getFileName() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.