PHP mPDF save file as PDF

前端 未结 4 1193
难免孤独
难免孤独 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 20:53

    This can be done like this. It worked fine for me. And also set the directory permissions to 777 or 775 if not set.

    ob_clean();
    $mpdf->Output('directory_name/pdf_file_name.pdf', 'F');
    

提交回复
热议问题