Result Size:
625 x 571
<
!DOCTYPE
html
>
<
html
>
<
body
>
<?php
$stat = stat(
"test.txt"
);
echo
"Access time: "
.$stat[
"atime"
];
echo
"<br>Modification time: "
.$stat[
"mtime"
];
echo
"<br>Device number: "
.$stat[
"dev"
];
?>
<
/body
>
<
/html
>