filectime.php : filectime « File Directory « PHP






filectime.php

 
<?php
   $file = "/usr/local/apache2/htdocs/stat.php";
   echo "File inode last changed: ".date("m-d-y  g:i:sa", fileatime($file));
?>
  
  








Related examples in the same category

1.Get the change time of a document with the filectime() function.