function tstamp_to_date($tstamp) {
return date("m-d-y g:i:sa", $tstamp);
}
$file = "/data.txt";
$fh = fopen($file, "r");
$fileinfo = fstat($fh);
echo "Filename: ".basename($file)."
";
echo "Filesize: ".round(($fileinfo["size"]/1024), 2)." kb
";
echo "Last accessed: ".tstamp_to_date($fileinfo["atime"])."
";
echo "Last modified: ".tstamp_to_date($fileinfo["mtime"])."
";
?>