Friday, October 10, 2025
HomeLanguagesPHP | SplFileInfo getPath() Function

PHP | SplFileInfo getPath() Function

The SplFileInfo::getPath() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to return the path without filename.

Syntax:

string SplFileInfo::getPath( void )

Parameters: The function does not accept any parameter.

Return Value: This function returns the path of file excluding the file name.

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

Program 1:




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


Output:

html

Program 2:




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


Output:

/home/rajvir/Desktop/neveropen/home/rajvir/Desktop/var/www/html

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

RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS