Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 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 */