こんにちは、smarty で pdf のダウンロード行を作成する必要があります。fpdf から作成したもので、火災のバグで pdf ファイルを表示していますが、smarty でそのためのダウンロード リンクを作成できます。私のコードは以下のとおりです。
$content = $this->view->fetch($pdf->Output());
$router->disableRender();
header('Content-Description: File Transfer');
header('Content-Type: application/pdf');
header('Content-disposition: attachment; filename="doc.pdf"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
ob_clean();
flush();
readfile(doc.pdf);
die;
thax advを助けてください......