Friday, October 17, 2025
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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS