A função stat () pode retornar as informações sobre um arquivo.
Sintaxe
array stat ( string $filename )
Esta função pode reunir as estatísticas do arquivo nomeado por nome do arquivo. Se o nome do arquivo for um link simbólico, as estatísticas são do próprio arquivo, não do link simbólico. A função lstat () é idêntica à função stat (), exceto que pode ser baseada no status dos links simbólicos.
Exemplo 1
<?php
$stat = stat("/PhpProject/sample.txt"); // Get file stat
echo "Acces time: " .$stat["atime"]; // Print file access time, this is the same as calling fileatime()
echo "\nModification time: " .$stat["mtime"]; //Print file modification time, this is the same as calling filemtime()
echo "\nDevice number: " .$stat["dev"]; // Print the device number
?>
Resultado
Acces time: 1590217956
Modification time: 1591617832
Device number: 1245376677
Exemplo-2
<?php
$stat = stat("/PhpProject/sample.txt");
if(!$stat) {
echo "stat() call failed...";
} else {
$atime = $stat["atime"] + 604800;
if(!touch("/PhpProject1/sampl2.txt", time(), $atime)) {
echo "failed to touch file...";
} else {
echo "touch() returned success...";
}
?>
Resultado
touch() returned success...