Hallo, Seth,
Wenn Du es so machst wie in meinem Beispiel sollte eigentlich die ganze Datei neu geschrieben werden ...
nein, siehe fopen.
du liest damit die datei in $inhalt ein und haengst anschliessend nix (bzw. eine leerzeile) hinten dran.
Dann nimm "w+" (s.u.: truncate the file to zero) ...
Grüße,
Sebastian
mode Description
'r' Open for reading only; place the file pointer at the beginning of the file.
'r+' Open for reading and writing; place the file pointer at the beginning of the file.
'w' Open for writing only; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.
'w+' Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.