- PHP
-
2015-09-28 - 更新:2015-09-29
画像と同じようにPDFファイルもPHPで出力させることができます。
PDFファイルを出力
//PDFを出力するためのヘッダー header("Content-Type: application/pdf"); //ファイルを読み込んで出力 readfile("example.pdf");
PDFファイルをダウンロードさせる
//ダウンロードさせるためのヘッダー header("Content-Disposition: attachment; filename=example.pdf"); //ファイルを読み込んで出力 readfile("example.pdf");
![](https://k-sugi.sakura.ne.jp/wp-content/themes/chic_grid3/images/icon-tag.png)
4,045 views