filemtime
Description
The filemtime of Filesystem for PHP gets file modification time.
Syntax
filemtime( string $filename ): int|false
Parameters
filename
Path to the file.
Return
Returns the time the file was last modified, or false on failure.
The time is returned as a Unix timestamp, which is suitable for the date() function.
Examples
1 · filename
<? $filename = $_SERVER['DOCUMENT_ROOT'] . '/assets/txt/1.txt'; $return = filemtime($filename); echo $return; ?>
1728861341
2 · date
<? $filename = $_SERVER['DOCUMENT_ROOT'] . '/assets/txt/1.txt'; $return = filemtime($filename); echo "last modified: " . date("Y-m-d H:i:s", $return); ?>
last modified: 2024-10-13 23:15:41
Links
Related
Filesystem
- basename
- chgrp
- chmod
- chown
- clearstatcache
- copy
- dirname
- disk_free_space
- disk_total_space
- diskfreespace
- fclose
- feof
- fflush
- fgetc
- fgetcsv
- fgets
- file
- file_exists
- file_get_contents
- file_put_contents
- fileatime
- filectime
- filegroup
- fileinode
- fileowner
- fileperms
- filesize
- filetype
- flock
- fnmatch
- fopen
- fpassthru
- fputcsv
- fputs
- fread
- fscanf
- fseek
- fstat
- ftell
- ftruncate
- fwrite
- glob
- is_dir
- is_executable
- is_file
- is_link
- is_readable
- is_uploaded_file
- is_writable
- is_writeable
- lchgrp
- lchown
- link
- linkinfo
- lstat
- mkdir
- move_uploaded_file
- pathinfo
- pclose
- popen
- readfile
- readlink
- realpath
- realpath_cache_get
- realpath_cache_size
- rename
- rewind
- rmdir
- set_file_buffer
- stat
- symlink
- tempnam
- tmpfile
- touch
- umask
- unlink