PHP | SplFileInfo::getPathInfo() Function Last Updated : 05 Mar, 2021 Comments Improve Suggest changes Like Article Like Report The SplFileInfo::getPathInfo() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get an SplFileInfo object for the path.Syntax: SplFileInfo::getPathInfo( $class ) Parameters: This function accepts single parameter $class which is optional. It is used to specify the name of SplFileInfo derived class name.Return Value: This function returns the SplFileInfo object for the parent path of the file.Below programs illustrate the SplFileInfo::getPathInfo() function.Program 1: PHP <?php // PHP Program to illustrate // Splfileinfo getPathInfo function $file = new SplFileInfo('/var/www/html/gfg.php'); $info = $file->getPathInfo(); print_r($info); ?> Output: SplFileInfo Object ( [pathName:SplFileInfo:private] => /var/www/html [fileName:SplFileInfo:private] => html ) Program 2: php <?php // 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->getPathInfo(); print_r($info); echo "</br>"; } ?> Output: SplFileInfo Object ( [pathName:SplFileInfo:private] => /home/rajvir/Desktop/GeeksforGeeks [fileName:SplFileInfo:private] => GeeksforGeeks ) SplFileInfo Object ( [pathName:SplFileInfo:private] => /home/rajvir/Desktop [fileName:SplFileInfo:private] => Desktop ) SplFileInfo Object ( [pathName:SplFileInfo:private] => /var/www/html [fileName:SplFileInfo:private] => html ) SplFileInfo Object ( [pathName:SplFileInfo:private] => . [fileName:SplFileInfo:private] => . ) Reference: http://php.net/manual/en/splfileinfo.getpathinfo.php Comment More infoAdvertise with us Next Article PHP | SplFileInfo::getPathInfo() Function R R_Raj Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-SplFileInfo Similar Reads 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 1 min read PHP | SplFileInfo getPathname() Function 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 1 min read PHP | SplFileInfo getInode() Function The SplFileInfo::getInode() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the inode number for the filesystem object. Syntax: int SplFileInfo::getInode( void) Parameters: This function does not accept any parameter. Return Value: This function returns inod 1 min read PHP | SplFileInfo getATime() Function The SplFileInfo::getATime() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the last access time of the file. Syntax: int SplFileInfo::getATime( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the last acce 1 min read PHP | SplFileInfo getRealPath() Function The SplFileInfo::getRealPath() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get absolute file path. Syntax: int SplFileInfo::getRealPath( void ) Parameters: This function does not accept any parameter. Return values: This function returns the path to the file 1 min read PHP | SplFileInfo getFileInfo() Function The SplFileInfo::getFileInfo() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file information of the file. Syntax: SplFileInfo::getFileInfo( $class ) Parameters: This function accepts single parameter $class which is optional. It is used to specify the 1 min read PHP | SplFileInfo getCTime() Function The SplFileInfo::getCTime() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the inode change time. The returned time is in Unix timestamp format. Syntax: int SplFileInfo::getCTime( void ) Parameters: This function does not accept any parameter. Return Value: 1 min read PHP | SplFileInfo getMTime() Function The SplFileInfo::getMTime() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to return the last modified time. The returned time in Unix timestamp. Syntax: int SplFileInfo::getMTime( void ) Parameters: This function does not accept any parameter. Return Value: This 1 min read PHP | SplFileInfo getType() Function The SplFileInfo::getType() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file type. Syntax: string SplFileInfo::getType( void ) Parameters: This function does not accept any parameter. Return values: This function returns the type of file i.e. link, di 1 min read Like