Wednesday, June 17, 2026
HomeLanguagesPHP | SplFileInfo getCTime() Function

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: This function returns the time in Unix timestamp format.

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

Program 1:




<?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 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: http://php.net/manual/en/splfileinfo.getctime.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS