ボタンを使用して、テキストファイルを作成するスクリプトに移動します。
<?php
$handle = fopen("file.txt", "w");
fwrite($handle, "text1.....");
fclose($handle);
?>
その後、Webブラウザにこのファイルのダウンロードまたはオープンを提案してもらいたいのですが、どうすればよいですか?ありがとう
ボタンを使用して、テキストファイルを作成するスクリプトに移動します。
<?php
$handle = fopen("file.txt", "w");
fwrite($handle, "text1.....");
fclose($handle);
?>
その後、Webブラウザにこのファイルのダウンロードまたはオープンを提案してもらいたいのですが、どうすればよいですか?ありがとう
readfile()とapplication/octet-stream
ヘッダーを使用する
<?php
$handle = fopen("file.txt", "w");
fwrite($handle, "text1.....");
fclose($handle);
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename('file.txt'));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize('file.txt'));
readfile('file.txt');
exit;
?>
$content = file_get_contents ($filename);
header ('Content-Type: application/octet-stream');
echo $content;
動作するはずです