PHP | SplFileInfo getCTime() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report 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: This function returns the time in Unix timestamp format. Below programs illustrate the SplFileInfo::getCTime() function in PHP: Program 1: PHP <?php // PHP Program to illustrate // Splfileinfo::getCTime() function $file = new SplFileInfo("gfg.txt"); $gfg = $file->getCTime(); echo date("F d Y H:i:s.", $gfg); ?> Output: October 26 2018 18:11:48. Program 2: php <?php // PHP program to use array to check // multiple files $GFG = array ( "dummy.php", "frame.php", "gfg.txt", "dummy.php" ); foreach ($GFG as &$file_name) { // Create new SplFile Object $file = new SplFileInfo($file_name); // Print result $gfg = $file->getCTime(); echo date("F d Y H:i:s.", $gfg). "</br>"; } ?> Output: October 26 2018 18:11:48. October 25 2018 21:05:44. October 25 2018 19:56:04. October 26 2018 18:11:48. Reference: https://www.php.net/manual/en/splfileinfo.getctime.php Comment More infoAdvertise with us Next Article PHP | SplFileInfo getMTime() Function R R_Raj Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-SplFileInfo Similar Reads 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 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 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 PHP | SplFileInfo getSize( ) Function The SplFileInfo::getSize() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get file size in bytes. Syntax: int SplFileInfo::getSize( void ) Parameters: This function does not accept any parameter. Return values: This function returns the size of file in bytes. B 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 getFilename() Function The SplFileInfo::getFilename() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file name. Syntax: string SplFileInfo::getFilename( void ) Parameters: This function does not accept any parameter. Return Value: This function returns a string which contains 1 min read Like