Open In App

PHP | SplFileInfo getPathname() Function

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

// PHP Program to illustrate 
// SplFileInfo::getPathname() function
 
$file = new SplFileInfo('/var/www/html/gfg.php');
 
$info = $file->getPathname();
print_r($info);
 
?>
Output:
/var/www/html/gfg.php
Program 2: php
<?php
 
// PHP program to use array to check
// multiple files path
   
$GFG = array (
    "/home/rajvir/Desktop/GeeksforGeeks/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
    $info = $file->getPathname();
    print_r($info);
    echo "</br>";
}
?>
Output:
/home/rajvir/Desktop/GeeksforGeeks/dummy.php
/home/rajvir/Desktop/gfg.txt
/var/www/html/gfg.php
dummy.php
Reference: http://php.net/manual/en/splfileinfo.getpathname.php

Next Article

Similar Reads