How to get a file the last access time of a file in PHP

2 Answers

0 votes
$filename = 'd:\\data.txt';
if (file_exists($filename)) 
    echo "$filename last accessed date and time: " . date("F d Y H:i:s", fileatime($filename));
  
/*
run:

d:\data.txt last accessed date and time: June 17 2015 23:53:01

*/ 

 



answered Jun 18, 2015 by avibootz
edited Jun 18, 2015 by avibootz
0 votes
$filename = 'd:\\data.txt';
if (file_exists($filename)) 
    echo "$filename last accessed date and time: " . date("m/d/Y H:i:s", fileatime($filename));
  
/*
run:

d:\data.txt last accessed date and time: 06/17/2015 23:53:01

*/

 



answered Jun 18, 2015 by avibootz

Related questions

1 answer 175 views
1 answer 172 views
1 answer 186 views
186 views asked Jun 17, 2016 by avibootz
2 answers 302 views
1 answer 184 views
...