i have a php file A.php.Every time my page A.php is called i want it to write some data to a file. I want to appent to a existing file and not overwrite
ben bunu nasıl yapabilirim
Kolay file_put_contents
function with the FILE_APPEND
bayrağı kullanmak için:
file_put_contents('filename', 'data', FILE_APPEND);
Bu tutorial gidiyorsun almalısınız
$myFile = "testFile.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
$stringData = "String 1\n";
fwrite($fh, $stringData);
$stringData = "String 2\n";
fwrite($fh, $stringData);
fclose($fh);