Skip to content

Instantly share code, notes, and snippets.

@kenjis
Last active August 29, 2015 14:18
Show Gist options
  • Save kenjis/502292dbbabe9c9c993c to your computer and use it in GitHub Desktop.
Save kenjis/502292dbbabe9c9c993c to your computer and use it in GitHub Desktop.
test of filemtime()
$ mkdir dir
$ touch dir/file
$ php -r 'echo filemtime("dir").PHP_EOL;'
1427934928
$ echo aaa > dir/file 
$ php -r 'echo filemtime("dir").PHP_EOL;'
1427934928
@koriym
Copy link

koriym commented Apr 2, 2015

$ php -r 'echo filemtime("dir/.").PHP_EOL;'

.. but same !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment