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.
The documentation of filemtime states that results of this function are cached. Maybe you can try it with clearstatcache:
"; $e=fopen('log.txt', 'w'); fwrite($e, "well well well"); clearstatcache(); $j = filemtime('log.txt'); echo gmdate("h:i:s", $j);