Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$file = file('testdatei.txt');
str_replace('3c', 'blahblah', $file);
$zeile = 4;
$file = file('testdatei.txt');
str_replace('3c', 'blahblah', $file[$zeile]);
$file = file('testdatei.txt');
$file = str_replace('3c', 'blahblah', $file);
$f_str = implode("\n", $file);
$f = fopen("testdatei.txt", "w");
fputs($f, $f_str);
fclose($f);
$file = file('testdatei.txt');
$file = str_replace('3c', 'blahblah', $file);
$f_str = implode("", $file);
$f = fopen("testdatei.txt", "w");
fputs($f, $f_str);
fclose($f);