我正在使用fpdf创建一个pdf,这个工作正常,问题是,我需要使用标头重定向确定的php文件,但不起作用。
//Report.php
//data in pdf created correctly.
$pdf->close();
//without ob_end_clean, the pdf doesn't show
ob_end_clean();
$pdf->Output($file,'I');
//return to index.php
header("Location: ".DOL_URL_ROOT.'/product/stock/index.php');
嗨,我需要的是:
由于
答案 0 :(得分:0)
只需删除标题调用即可。 pdf->输出($ file,' I')无论如何都会显示新创建的文件。