PHP mPDF save file as PDF

前端 未结 4 1161
难免孤独
难免孤独 2020-12-23 20:44

I have a page which uses mPDF which when you run displays a PDF in the browser, it can also be saved from here as a PDF no problem. What I would like to happen is when the p

4条回答
  •  时光说笑
    2020-12-23 21:15

    The mPDF docs state that the first argument of Output() is the file path, second is the saving mode - you need to set it to 'F'.

    $mpdf->Output('filename.pdf','F');
    

提交回复
热议问题