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.
$inhalt = file_get_contents("pfad/zur/datei.php");
$inhalt = preg_replace($pattern, $replace, $inhalt);
file_put_contents("pfad/zur/datei.php", $inhalt);
<?
$pattern = "<head>";
$replace = "<head><title>YesYo</title>";
$inhalt = file_get_contents("index.php");
$inhalt = preg_replace($pattern, $replace, $inhalt);
file_put_contents("index.php", $inhalt);
?>
<html>
<head>
</head>
<body>
</body>
</html>
<html>
<<head><title>YesYo</title>>
</<head><title>YesYo</title>>
<body>
</body>
</html>
Ich kann es mir vorstellen: es wird bloß das „head“ ersetzt.Was genau klappt an dem Code nicht so, wie du es willst?