Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

filemtime returns same value before and after modification of file

Im trying to get the last modified time of a file before and after i write to it using fwrite. But, i get the same values for some reason.

<?php
$i = filemtime('log.txt');
echo gmdate("h:i:s", $i);
echo "<br/>";
$e=fopen('log.txt', 'w');
fwrite($e, "well well well");
$j = filemtime('log.txt');
echo gmdate("h:i:s", $j);

?>

Now i modify 'log.txt' with a text editor about a minute before i run this script. So i should be getting about 40-60 seconds of time difference. If someone could point out what is happening here, that'd be really appreciated. Thanks.

like image 373
Haider Ali Avatar asked Mar 15 '23 01:03

Haider Ali


2 Answers

The documentation of filemtime states that results of this function are cached. Maybe you can try it with clearstatcache:

<?php
$i = filemtime('log.txt');
echo gmdate("h:i:s", $i);
echo "<br/>";
$e=fopen('log.txt', 'w');
fwrite($e, "well well well");
clearstatcache();
$j = filemtime('log.txt');
echo gmdate("h:i:s", $j);
like image 71
The fourth bird Avatar answered Mar 17 '23 03:03

The fourth bird


Try to add fclose after the fwrite:

<?php
$i = filemtime('log.txt');
echo gmdate("h:i:s", $i);
echo "<br/>";
$e=fopen('log.txt', 'w');
fwrite($e, "well well well");
fclose($e);
$j = filemtime('log.txt');
echo gmdate("h:i:s", $j);
?>
like image 30
Frank Avatar answered Mar 17 '23 05:03

Frank