我正在使用以下代码保存带有FPDF的PDF文档......
$pdf->Output('doc.pdf','D');
...但它将其保存为'doc.pdf.html'
为什么要添加html扩展名?
答案 0 :(得分:11)
在我的情况下,问题就是我在回显PDF之后没有立即终止脚本。我正在使用一个框架并让它完成,这导致了问题。所以只需添加一个“退出”语句就可以修复它。
答案 1 :(得分:0)
它不会添加'.html'扩展名:
源代码:
case 'D':
//Download file
if(ob_get_length())
$this->Error('Some data has already been output, can\'t send PDF file');
header('Content-Type: application/x-download');
if(headers_sent())
$this->Error('Some data has already been output, can\'t send PDF file');
header('Content-Length: '.strlen($this->buffer));
header('Content-Disposition: attachment; filename="'.$name.'"');
header('Cache-Control: private, max-age=0, must-revalidate');
header('Pragma: public');
ini_set('zlib.output_compression','0');
echo $this->buffer;
break;
因此问题必须在其他地方。