PHP コードを使用して、ファイルの種類を強制的にダウンロードします。場合によっては、一部のファイルをオンラインで開くことができませんが、この場合、この機能を使用して問題を解決できます。
function downloadFile($file){/*Alessio Delmonti によるコーディング*/
$file_name = $file;
$mime = 'application/force-download'; // 必須
header('Expires: 0'); // キャッシュなし
header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); false);
header('Content-Type: '.$mime);
header('Content-Disposition:attachment; filename="'.basename($file_name).'"'); -エンコーディング: バイナリ');
header('接続: close'); // プッシュアウト
}
;
http://www.bkjia.com/PHPjc/364768.html
本当