Friday, October 10, 2025
HomeLanguagesPHP | filectime( ) Function

PHP | filectime( ) Function

The filectime() function in PHP is an inbuilt function which is used to return the last time the specified file was changed. The filectime() function returns the last time the file was changed as a Unix Timestamp on success and False on failure. The filectime() function checks for inode changes which are the updations in permissions, owner, group or other metadata as well as regular changes.

The filename is passed as a parameter to the filectime() function. The result of the filectime() function is cached and a function called clearstatcache() is used to clear the cache.

Syntax:

filectime($filename)

Parameters: The filectime() function in PHP accepts only one parameter $filename. It specifies the file whose last changed time you want to check.

Return Value: It returns the last changed time of a file as a Unix Timestamp on success and False on failure.

Errors And Exception:

  1. The time resolution may differ from one file system to another.
  2. This function doesn’t works on some unix systems which have access time updates are disabled to increase performance.

Examples:

Input : echo filectime("gfg.txt");
Output : 1525159574

Input : echo "Last changed: ".date("F d Y H:i:s.", 
                            filectime("gfg.txt"));
Output : Last changed: May 1 2018 07:26:14.

Below programs illustrate the filectime() function.

Program 1:




<?php
  
// checking last time a file was changed
echo filectime("gfg.txt");
  
?>


Output:

1525159574

Program 2:




<?php
  
// checking last time a file was changed
echo filectime("gfg.txt");
  
// checking last time a file was changed
// and formatting the output of the date 
echo "Last changed: ".date("F d Y H:i:s.", 
                    filectime("gfg.txt"));
?>


Output:

1525159574
Last changed: May 1 2018 07:26:14.

Reference:
http://php.net/manual/en/function.filectime.php

RELATED ARTICLES

Most Popular

Dominic
32349 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS