下記の月並みなコードを書いています。
<?php
// ファイル指定, sample.pdfはこのプログラムと同じディレクトリにある前提です。
$downfile = "sample.pdf";
$dirfrom = basename($downfile);
// ヘッダーを指定
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=\"$downfile\"");
readfile($dirfrom);
?>
ダウンロード開始前に表示されるメニューの内容がEdgeとIEで異なります。
IEには開くボタンがありますが、Edgeにはありません。
ファイルを保存せずにすぐに開きたいときはIEの方が便利です。
【このカテゴリーの最新記事】
-
no image
-
no image