文字列からファイルを作成する方法を調べています。プレーンテキストは.txtとして保存され、phpは.phpなどとして保存されますが、それについての洞察を得たいと思っていました。
**このコードを見つけました
$file = 'people.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= "John Smith\n";
// Write the contents back to the file
file_put_contents($file, $current);
しかし、people.txtをサーバーに保存する必要がありますか?
強制ダウンロード部分
header("Content-Disposition: attachment; filename=\"" . basename($File) . "\"");
header("Content-Type: application/force-download");
header("Content-Length: " . filesize($File));
header("Connection: close");
上記をどこに格納する必要がありますか?コードは既製のファイルを強制的にダウンロードするのが正しいと思いますか?