Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
$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 */
$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 */