Open In App

PHP | SplFileInfo getExtension() Function

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The SplFileInfo::getExtension() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file extension. Syntax:
string SplFileInfo::getExtension( void )
Parameters: This function does not accept any parameter. Return Value: This function returns the string containing the extension of file. Below programs illustrate the SplFileInfo::getExtension function in PHP: Program 1: PHP
<?php

// PHP Program to illustrate 
// Splfileinfo getExtension function

// Create new SPlFileInfo Object
$file = new SplFileInfo("gfg.php");

// Print result
echo $file->getExtension();
?>
Output:
php
Program 2: php
<?php

// PHP program to use array to check
// multiple files
$GFG = array(
    "/home/rajvir/Desktop/GeeksforGeeks/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->getExtension() . "</br>";
}
?>
Output:
php
txt
php
c
Reference: https://www.php.net/manual/en/splfileinfo.getextension.php

Similar Reads