コードをコピーします コードは次のとおりです:
/********************
*@file - ファイルへのパス
*/
function Force_download($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 "ファイルが選択されていません";
}
}
これは、Script House によって以前に公開された記事からの抜粋です。さらに詳しいヒントを参照できます。
21個の実用的で便利なPHP関数コードのコレクション
http://www.bkjia.com/PHPjc/321868.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/321868.html技術記事次のコードをコピーします。 /******************** *@file - ファイルへのパス*/ functionforce_download($file) { if ((isset($file))(file_exists($file))) { header("Content-length: ".files. .