PHP | SplFileInfo getType() Function Last Updated : 18 Dec, 2018 Summarize Comments Improve Suggest changes Share Like Article Like Report 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, dir or file. Below Programs illustrate the SplFileInfo::getType() function in PHP: Program 1: php <?php // PHP Program to illustrate // Splfileinfo::getType() function $file = new SplFileInfo(dirname("gfg.txt")); $gfg = $file->getType(); // Print result print($gfg . "</br>"); $file = new SplFileInfo(__FILE__); $gfg = $file->getType(); // Print result print($gfg); ?> Output: dir file Program 2: php <?php // PHP program to use array to check // multiple files $GFG = array ( "/home/rajvir/Desktop/GeeksforGeeks/dummy.php", "/home/rajvir/Desktop", "/var/www/html/", "frame.php" ); foreach ($GFG as &$file_name) { // Create new SplFile Object $file = new SplFileInfo($file_name); // Print result echo $file->getType() . "</br>"; } ?> Output: file dir dir file Reference: http://php.net/manual/en/splfileinfo.gettype.php Comment More infoAdvertise with us Next Article PHP | SplFileInfo getType() Function R R_Raj Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-SplFileInfo Similar Reads 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 getPerms() Function The SplFileInfo::getPerms() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the permission of the file. Syntax: int SplFileInfo::getPerms( void ) Parameters: This function does not accept any parameter. Return values: This function returns the permission of 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 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 Like