Getting file timestamps : filemtime « File Directory « PHP






Getting file timestamps

 
<?php
$last_access = fileatime('l.php');
$last_modification = filemtime('m.php');
$last_change = filectime('c.php');
?>
  
  








Related examples in the same category

1.filemtime.php
2.discover the modification date of a file with the function filemtime()