HomeLanguagesPHP | SplFileInfo getFilename() Function

PHP | SplFileInfo getFilename() Function

The SplFileInfo::getFilename() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file name.

Syntax:

string SplFileInfo::getFilename( void )

Parameters: This function does not accept any parameter.

Return Value: This function returns a string which contains the filename.

Below programs illustrate the SplFileInfo::getFilename() function in PHP:

Program 1:




<?php
  
// PHP Program to illustrate 
// Splfileinfo::getFilename() function
   
// Create new SPlFileInfo Object
$file = new SplFileInfo("gfg.txt");
   
// Print result
   
echo( $file->getFilename());
?>


Output:

gfg.txt

Program 2:




<?php
  
// PHP program to use array to check 
// multiple files
    
$GFG = array (
    "/home/rajvir/Desktop/neveropen/dummy.php",
    "/home/rajvir/Desktop/gfg.txt",
    "/var/www/html/gfg.php",
    "demo.c"
);
    
foreach ($GFG as $file_name) {
        
    // Create new SPlFileInfo Object
    $file = new SplFileInfo($file_name);
        
    // Print result
    echo($file->getFilename());
    echo "</br>";
}
?>


Output:

dummy.phpgfg.txtgfg.phpdemo.c

Reference :http://php.net/manual/en/splfileinfo.getfilename.php

RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6924 POSTS0 COMMENTS
Nicole Veronica
12040 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12150 POSTS0 COMMENTS
Shaida Kate Naidoo
7060 POSTS0 COMMENTS
Ted Musemwa
7303 POSTS0 COMMENTS
Thapelo Manthata
7018 POSTS0 COMMENTS
Umr Jansen
7008 POSTS0 COMMENTS