「PHP入門」ファイルを強制的にダウンロードさせるサンプル

2018年3月9日

phpコード
function forceDLFile($file)
{
if ((isset($file))&&(file_exists($file))) {
header(“Content-length: “.filesize($file));
header('Content-Type: application/octet-stream’);
header('Content-Disposition: attachment; filename="' . $file . '"');
readfile(“$file");
} else {
echo “ファイルが選択されません";
}
}

PHP

Posted by arkgame