ホームページ >バックエンド開発 >PHPチュートリアル >PHPダウンロードファイルのコード例
コードをコピーします コードは次のとおりです:
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream');
header('Content-Disposition:attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header(' 有効期限: 0');
header('Cache-Control: 再検証が必要、事後チェック = 0、事前チェック = 0');
header('プラグマ: public'); Content-Length: ' . filesize($file);
readfile($file);
?>オンライン プレビュー PDF を投稿します ファイルのコード
コードをコピーします コードは次のとおりです:
public function fddAction()
{
// 添付ファイルの場所を取得
$attachment_location = $_SERVER["DOCUMENT_ROOT" ] . "/pdf/fdd/sample.pdf" ;
if (file_exists($attachment_location)) {
// 添付ファイルが存在します
// 開いている PDF ダイアログをユーザーに送信します
header('Cache-Control: public') ; // 例:
header('Content-Type: application/pdf');
readfile($attachment_location); ); // pdf を出力するだけなので、以降のスクリプトの実行を停止します
} else {
die('エラー: ファイルが見つかりません。');