PHP: Getting Last Changed Time of a File – File ctime

File ctime may be a little misleading in nature as many would think it as the creation time of the file, but actually it’s the meta data such as the ownership or permissions change time of the file in addition to content modification. To get the ctime of a file in PHP:

$last = filectime('anyfile');

Aside from ctime, you may also want to learn about getting the atime and mtime in PHP.

1 thought on “PHP: Getting Last Changed Time of a File – File ctime”

  1. Pingback: PHP: Getting Last Accessed Time of a File – File atime

Comments are closed.

Scroll to Top