filectime
Gets inode change time of file
Syntax
filectime ( string $filename ) : int
Parameters
filename
Path to the file.
Return
Returns the time the file was last changed, or FALSE on failure. The time is returned as a Unix timestamp.
Examples
1
<? $filename = $_SERVER["DOCUMENT_ROOT"] . "/assets/txt/file.txt"; $return = filectime($filename); echo $return; ?>
1618618204
2
<? $filename = $_SERVER["DOCUMENT_ROOT"] . "/assets/txt/file.txt"; $return = filectime($filename); echo "last changed: " . date("Y-m-d H:i:s", $return); ?>
last changed: 2021-04-17 00:10:04