生のバイナリ データから PDF ファイルを作成していますが、完全に機能していますが、PHP ファイルで定義したヘッダーが原因で、ユーザーはファイルを「保存」するか「開く」ように求められます。ここのローカルサーバーにファイルを保存する方法はありますかhttp://localhost/pdf
?
以下は、私のページで定義したヘッダーです
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: application/pdf");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Transfer-Encoding: binary");