Tuesday, December 23, 2025
HomeLanguagesPHP | SplFileInfo getBasename() Function

PHP | SplFileInfo getBasename() Function

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

Syntax:

string SplFileInfo::getBasename( $suffix )

Parameters: This function accepts single parameter $suffix which is optional. It is used to specify the base name.

Return Value: This function returns the base name without path information.

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

Program 1:




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


Output:

string(7) "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.php"
);
  
foreach ($GFG as &$file) {
      
    // Create new SPlFileInfo Object
    $file = new SplFileInfo($file);
      
    // Print result
    var_dump($file->getBasename());
      
}
?>


Output:

string(9) "dummy.php"
string(7) "gfg.txt"
string(7) "gfg.php"
string(8) "demo.php"

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6825 POSTS0 COMMENTS
Nicole Veronica
11959 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6912 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS