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.
readfile("".$folder."/".$file."");
$folder = "/Downloads/";
$file = "text.txt";
ob_end_clean();
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=$file");
readfile("$folder$file");
exit;
Oder meine Schreibweise, die ich gefunden habe;
PHP:$folder = "/Downloads/";
$folder = "Downloads";
ob_end_clean();
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=$file");
readfile("$folder/$file");
exit;