「PHP」直接CSVファイルをダウンロードする

2022年1月12日

方法
1.ファイルを読み込んでダウンロード
fileread.php

$fileName = "prefs.csv";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $fileName);
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($fileName));
readfile($fileName);

2.文字列を読み込んでダウンロード

stringread.php

$fileName = "pref_" . date("YmdHis") . ".csv";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $fileName);
echo $csv;

 

PHP

Posted by arkgame