Friday, September 27, 2024
Google search engine
HomeLanguagesPHP | FilesystemIterator current() Function

PHP | FilesystemIterator current() Function

The FilesystemIterator::current() function is an inbuilt function in PHP which is used to returns the file information of the current element.

Syntax:

mixed FilesystemIterator::current( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns the filename, file information, or $this depending on the set flags.

Below programs illustrate the FilesystemIterator::current() function in PHP:

Program 1:




<?php
  
// Create new file system iterator
$fileItr = new FilesystemIterator(__DIR__, 
    FilesystemIterator::CURRENT_AS_PATHNAME);
  
// Loop runs for each element
foreach($fileItr as $it) {
       
    // Display the current element
    echo $fileItr->current() . "<br>";
}
  
?>


Output:

C:\xampp\htdocs\applications.html
C:\xampp\htdocs\bitnami.css
C:\xampp\htdocs\dashboard
C:\xampp\htdocs\favicon.ico
C:\xampp\htdocs\neveropen.PNG
C:\xampp\htdocs\gfg.php
C:\xampp\htdocs\img
C:\xampp\htdocs\index.php
C:\xampp\htdocs\Sublime Text Build 3211 x64 Setup.exe
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp

Program 2:




<?php
  
// Create new file system iterator
$fileItr = new FilesystemIterator(__DIR__, 
    FilesystemIterator::CURRENT_AS_PATHNAME);
  
// Loop runs file iterator is valid
while ($fileItr->valid()) {
  
    // Check for directory file iterator
    if ($fileItr->isDir()) {
  
        // Display the current element
        echo $fileItr->current() . "<br>";
    }
  
    // Move to the next file iterator
    $fileItr->next();
}
  
?>


Output:

C:\xampp\htdocs\dashboard
C:\xampp\htdocs\img
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp

Note: The output of this function depends on the content of server folder.

Reference: https://www.php.net/manual/en/filesystemiterator.current.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments