If I fwrite 'w' a file on a Windows server with ntfs loggong (like my local xampp server), effectively overwriting it (vrs 'a' append), does the ntfs server secretly keep a historical copy of my old file somewhere on the hard drive? If so, can I wipe it in php/js?
$filename = 'd:\\xxx.txt';
$handle = fopen($filename, 'w');
fwrite($handle, $info);
Can I get the FILE_APPEND_DATA in php? Maybe via a js/php lib?
Is there auto history logging on a linux web server (via a fwrite to my website's root directory)? (here, i assume GoDaddy or whomever does regular backups, but I don't mean that here).